summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/agent/unittest/env/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'vstf/vstf/agent/unittest/env/model.py')
-rwxr-xr-xvstf/vstf/agent/unittest/env/model.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/vstf/vstf/agent/unittest/env/model.py b/vstf/vstf/agent/unittest/env/model.py
new file mode 100755
index 00000000..e3c2bca6
--- /dev/null
+++ b/vstf/vstf/agent/unittest/env/model.py
@@ -0,0 +1,24 @@
+"""
+Created on 2015-10-9
+
+@author: y00228926
+"""
+import unittest
+
+from vstf.agent.unittest import configuration
+
+
+class Test(unittest.TestCase):
+ def setUp(self):
+ self.eth_for_test = configuration.eth_for_test
+ self.mac_of_eth = configuration.mac_of_eth
+ self.source_repo = configuration.source_repo
+ self.bdf_of_eth = configuration.bdf_of_eth
+
+ def tearDown(self):
+ pass
+
+
+if __name__ == "__main__":
+ # import sys;sys.argv = ['', 'Test.testName']
+ unittest.main()