run(self,
tests=None,
runner=None,
list_tests=False)
| source code
|
Run the GUI tests.
The GUI test list should be something like
['N_state_model.test_stereochem_analysis']. The first part is the
imported test case class, the second is the specific test.
- Parameters:
tests (list of str) - The list of GUI tests to preform.
runner (Test runner instance (TextTestRunner, BaseGUITestRunner subclass,
etc.)) - A test runner such as TextTestRunner. For an example of how to
write a test runner see the python documentation for
TextTestRunner in the python source.
list_tests (bool) - A flag which if True will cause the tests to be listed rather
than executed.
|