7f9b7f9f49
Continuation/Part 2 of https://gerrit.fd.io/r/#/c/17092/ Change-Id: Id0122d84eaf2c05d29e5be63a594d5e528ee7c9a Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
29 lines
590 B
Python
29 lines
590 B
Python
#!/usr/bin/env python
|
|
|
|
import unittest
|
|
|
|
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")
|
|
|
|
if error:
|
|
self.logger.critical(error)
|
|
self.assertNotIn("Failed", error)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(testRunner=VppTestRunner)
|