X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fframework.py;h=7633ca04d0bd3ecbafd6c7f99ac1d2bd30ac1493;hb=7c03ed4;hp=aec4a8ebbdfadaee730d0fdc08ac553ef54a8eec;hpb=852f5ef9cf8010a94beeea8a73f308576e442e46;p=vpp.git diff --git a/test/framework.py b/test/framework.py index aec4a8ebbdf..7633ca04d0b 100644 --- a/test/framework.py +++ b/test/framework.py @@ -1008,6 +1008,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]