Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is difference between tearDownClass() & tearDown() methods?

Where can I find documentation for both.

junit.org documentation of JUnit listed only tearDown() not tearDownClass(): http://www.junit.org/apidocs/junit/framework/TestCase.html#setUp()

share|improve this question
1  
If the JUnit docs don't refer to it, where did you get it from? – skaffman Aug 15 '11 at 20:33

2 Answers

There's a AfterClass annotation in the JUnit 4.x API, is that what you meant?

tearDown occurs after executing each test method of the TestCase. There is a separate hook (the AfterClass I linked to) that executes after all the test methods of the TestCase have run.

I don't think the 3.x Junit API had any concept of an after-class teardown. Maybe you're thinking of TestNG?

share|improve this answer

From what I've seen the Java unittesting seems to match Python pretty closely, so if JUnit is the same as the Python testcases I'm working with then in a testcase class setUp() and tearDown() are called before and after every test() you write.

setUpClass() and tearDownClass() are called once at the beginning and end of a particular testcase class.

So to illustrate this in what I'm doing I have in Python:

class exampleUnitTest(SeleniumTestCase):
    def setUp(self):
        # setup each test

    def test1(self):
        # run test process

    def test2(self):
        # run test process

    def tearDown(self):
        # teardown each test

    @classmethod
    def tearDownClass(cls):
        # teardown at end of all tests
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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