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()
|
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() |
|||||
|
|
There's a AfterClass annotation in the JUnit 4.x API, is that what you meant?
I don't think the 3.x Junit API had any concept of an after-class teardown. Maybe you're thinking of TestNG? |
|||
|
|
|
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
So to illustrate this in what I'm doing I have in Python:
|
||||
|
|