Python Tests: Make VppTestCase unit testable.
[vpp.git] / test / framework.py
index 5eeb518..2505057 100644 (file)
@@ -1004,6 +1004,11 @@ class VppTestCase(unittest.TestCase):
 
         return rx
 
+    def runTest(self):
+        """ unittest calls runTest when TestCase is instantiated without a
+        test case.  Use case: Writing unittests against VppTestCase"""
+        pass
+
 
 def get_testcase_doc_name(test):
     return getdoc(test.__class__).splitlines()[0]