0

This link shows an example using the nose test suite, however I am interested in understanding how this would look with the standard unittest test suite.

Further, in the link provided, what is the purpose of the @properties that are used, i.e. @selectionList.Setter

wesanyer
  • 982
  • 1
  • 6
  • 27

1 Answers1

1

I am sure that the official documentation about Unit tests in Python 3 is pretty straightforward and the link you posted does not show anything that could not be done with another unit testing framework.

If you follow the tutorial, you can find your own way to write unit tests with pyunit.

In regards to the question about properties, there is a whole bunch of pages you might find useful:

Community
  • 1
  • 1
Markon
  • 4,480
  • 1
  • 27
  • 39