summaryrefslogtreecommitdiffstats
path: root/qtip/driver/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/driver/base.py')
-rw-r--r--qtip/driver/base.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/qtip/driver/base.py b/qtip/driver/base.py
new file mode 100644
index 00000000..6f5cab3c
--- /dev/null
+++ b/qtip/driver/base.py
@@ -0,0 +1,20 @@
+##############################################################################
+# Copyright (c) 2016 ZTE Corp and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+
+class BaseDriver(object):
+ """performance testing tool driver"""
+ def pre_run(self):
+ pass
+
+ def run(self):
+ pass
+
+ def post_run(self):
+ pass