Can somebody help me to find whether jython 2.5.2 jar support Class-level fixtures so that it can call setupclass() teardownclass() methods automatically. I am trying to use both jython 2.5.1 and 2.5.2 to call class-level fixtures but my sample code is not executing the setupclass() and teardownclass() method.
Please find below sample code for same having class level fixtures.
import unittest
from unittest import TestCase
class MyTestClass(TestCase):
@classmethod
def setUpClass(cls):
print("setUpClass")
@classmethod
def tearDownClass(cls):
print("tearDownClass")
def test_1(self):
print("test_1")
def test_2(self):
print("test_2")
if __name__ == "__main__":
suite = unittest.TestLoader().loadTestsFromTestCase(MyTestClass)
unittest.TextTestRunner(verbosity=2).run(suite)
Regards Chaman