summaryrefslogtreecommitdiffstats
path: root/test/test_fib.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_fib.py')
-rw-r--r--test/test_fib.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_fib.py b/test/test_fib.py
index 2f4d7265cf4..6acde0a6363 100644
--- a/test/test_fib.py
+++ b/test/test_fib.py
@@ -8,6 +8,14 @@ from framework import VppTestCase, VppTestRunner
class TestFIB(VppTestCase):
""" FIB Test Case """
+ @classmethod
+ def setUpClass(cls):
+ super(TestFIB, cls).setUpClass()
+
+ @classmethod
+ def tearDownClass(cls):
+ super(TestFIB, cls).tearDownClass()
+
def test_fib(self):
""" FIB Unit Tests """
error = self.vapi.cli("test fib")