diff options
Diffstat (limited to 'test/test_vom.py')
-rw-r--r-- | test/test_vom.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_vom.py b/test/test_vom.py index 222d72c1238..a27d5310f52 100644 --- a/test/test_vom.py +++ b/test/test_vom.py @@ -12,6 +12,14 @@ from framework import VppTestCase, running_extended_tests, \ class VOMTestCase(VppTestCase): """ VPP Object Model Test """ + @classmethod + def setUpClass(cls): + super(VOMTestCase, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(VOMTestCase, cls).tearDownClass() + def test_vom_cpp(self): """ run C++ VOM tests """ var = "TEST_DIR" |