aboutsummaryrefslogtreecommitdiffstats
path: root/test/asf/test_sparse_vec.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/asf/test_sparse_vec.py')
-rw-r--r--test/asf/test_sparse_vec.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/asf/test_sparse_vec.py b/test/asf/test_sparse_vec.py
new file mode 100644
index 00000000000..cf0afd8aaf3
--- /dev/null
+++ b/test/asf/test_sparse_vec.py
@@ -0,0 +1,34 @@
+#!/usr/bin/env python3
+
+import unittest
+
+from asfframework import VppAsfTestCase, VppTestRunner
+
+
+class TestSparseVec(VppAsfTestCase):
+ """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)