diff options
Diffstat (limited to 'test/test_jvpp.py')
-rw-r--r-- | test/test_jvpp.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_jvpp.py b/test/test_jvpp.py index b716af39205..9a58ca42383 100644 --- a/test/test_jvpp.py +++ b/test/test_jvpp.py @@ -17,6 +17,14 @@ REGISTRY_JAR_PREFIX = "jvpp-registry" class TestJVpp(VppTestCase): """ JVPP Core Test Case """ + @classmethod + def setUpClass(cls): + super(TestJVpp, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestJVpp, cls).tearDownClass() + def invoke_for_jvpp_core(self, api_jar_name, test_class_name): self.jvpp_connection_test(api_jar_name=api_jar_name, test_class_name=test_class_name, |