657bdf781a
Type: refactor Change-Id: I41455b759a5d302ad5c4247c13634c471e7d49a8 Signed-off-by: Pratikshya Prasai <pratikshyaprasai2112@gmail.com> Signed-off-by: Saima Yunus <yunus.saima.234@gmail.com> Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
36 lines
886 B
Python
36 lines
886 B
Python
#!/usr/bin/env python3
|
|
|
|
import unittest
|
|
|
|
from asfframework import VppTestCase, VppTestRunner
|
|
from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
|
|
|
|
|
|
class TestSparseVec(VppTestCase):
|
|
"""SparseVec Test Cases"""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(TestSparseVec, cls).setUpClass()
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
super(TestSparseVec, cls).tearDownClass()
|
|
|
|
def setUp(self):
|
|
super(TestSparseVec, self).setUp()
|
|
|
|
def tearDown(self):
|
|
super(TestSparseVec, self).tearDown()
|
|
|
|
def test_string_unittest(self):
|
|
"""SparseVec unit tests"""
|
|
error = self.vapi.cli("test sparse_vec")
|
|
if error.find("failed") != -1:
|
|
self.logger.critical("FAILURE in the sparse_vec test")
|
|
self.assertNotIn("failed", error)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main(testRunner=VppTestRunner)
|