aboutsummaryrefslogtreecommitdiffstats
path: root/test/framework.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/framework.py')
-rw-r--r--test/framework.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py
index bd42b48..8a8c42c 100644
--- a/test/framework.py
+++ b/test/framework.py
@@ -20,6 +20,7 @@ import unittest
from topology import Topology
import vppctl
import sys
+import log
class SweetcombTestCase(unittest.TestCase):
@@ -40,6 +41,12 @@ class SweetcombTestCase(unittest.TestCase):
cls.netopeer_cli = cls.topology.get_netopeer_cli()
cls.vppctl = vppctl.Vppctl()
+ @classmethod
+ def setUpClass(cls):
+
+ super(SweetcombTestCase, cls).setUpClass()
+ cls.logger = log.get_logger(cls.__name__)
+
def runTest(self):
pass