Is it possible to create an abstract TestCase, that will have some test_* methods, but this TestCase won't be called and those methods will only be used in subclasses? I think I am going to have one abstract TestCase in my test suite and it will be subclassed for a few different implementation of a single interface. This is why all test methods are the some, only one, internal method changes. How can I do it in elegant way?
| |||
|
feedback
|
|
I didn't quite undestand what do you plan to do -- the rule of thumb is "not to be smart with tests" - just have them there, plain written. But to achieve what you want, if you inherit from unittest.TestCase, whenever you call unittest.main() your "abstract" class eill be executed - I think this is the situation you want to avoid. Just do this: Create your "abstract" class inheriting from "object", not from TestCase. And for the actual "concrete" implementations, just use multiple inheritance: inherit from both unittest.TestCase and from yor abstarcat class.
| |||||||||
feedback
|
|
If you follow the convention of explicitly listing all test classes in run_unittest (see e.g. the Python test suite for many uses of that convention), then it will be straight-forward to not list a specific class. If you want to continue using unittest.main, and if you can allow using unittest2 (e.g. from Python 2.7), you can use its load_tests protocol to specify which classes contain test cases). In earlier versions, you will have to subclass TestLoader, and override loadTestsFromModule. | |||||
feedback
|
__test__=Falsein your base class. – bstpierre Dec 30 '10 at 23:12