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?

link|improve this question

1  
This might be somewhat easier if you use nose for running your tests. See Finding and running tests. With nose you could, for example, put __test__=False in your base class. – bstpierre Dec 30 '10 at 23:12
How about using skip on my abstract test case? – gruszczy Dec 30 '10 at 23:13
feedback

2 Answers

up vote 7 down vote accepted

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.

import unittest

class Abstract(object):
    def test_a(self):
        print "Running for class", self.__class__

class Test(unittest.TestCase, Abstract):
    pass

unittest.main()
link|improve this answer
This is how I wanted to do this in the first place. I want to be smart, because I am running my test against different database. The interface for accessing the database is always the same, so I just need to instantise my connection to the database and the always the same tests are run. I don't know, if that's too smart for tests, but I just don't like to type a lot ;-) – gruszczy Dec 30 '10 at 23:16
Yes, I ten d to like "making things smart" myself. So...can you clarify what is missing in my answer? There are ways to "plug" test methods in testCase classes depending on command lines parameters, you know... – jsbueno Dec 30 '10 at 23:19
When I am not at work, I like to do things very smart. This way I can learn more, even if I screw something on the way :-) There is no risk here. – gruszczy Dec 30 '10 at 23:20
(BTW, I prefer the "smart way" myself as well. The computer is supposed to do the hardwork) – jsbueno Nov 25 '11 at 16:49
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.

link|improve this answer
Won't I lose then the ability to invoke those tests from the command line? I would like to by default run all tests (except the ones from the abstract test case), but in certain cases only some of them. – gruszczy Dec 30 '10 at 23:08
@gruszczy: see my edit. – Martin v. Löwis Dec 30 '10 at 23:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.