move base test classes to oftest.base_tests
This lets them be shared between separate directories of tests.
diff --git a/tests/flow_stats.py b/tests/flow_stats.py
index 4b3c8e1..2144278 100644
--- a/tests/flow_stats.py
+++ b/tests/flow_stats.py
@@ -16,7 +16,7 @@
import oftest.dataplane as dataplane
import oftest.action as action
import oftest.parse as parse
-import basic
+import oftest.base_tests as base_tests
from oftest.testutils import *
from time import sleep
@@ -61,7 +61,7 @@
obj.assertEqual(str(pkt), str(rcv_pkt),
'Response packet does not match send packet')
-class SingleFlowStats(basic.SimpleDataPlane):
+class SingleFlowStats(base_tests.SimpleDataPlane):
"""
Verify flow stats are properly retrieved.
@@ -162,7 +162,7 @@
self.verifyStats(match, egress_port, test_timeout, num_sends)
-class TwoFlowStats(basic.SimpleDataPlane):
+class TwoFlowStats(base_tests.SimpleDataPlane):
"""
Verify flow stats are properly retrieved.
@@ -292,7 +292,7 @@
# TODO: sweep through the wildcards to verify matching?
-class AggregateStats(basic.SimpleDataPlane):
+class AggregateStats(base_tests.SimpleDataPlane):
"""
Verify aggregate flow stats are properly retrieved.