-
Notifications
You must be signed in to change notification settings - Fork 4
/
test.py
32 lines (25 loc) · 850 Bytes
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import unittest
import sapaths
import ivpaths
import imp
imp.reload(sapaths)
imp.reload(ivpaths)
"""
class TestSAPath(unittest.TestCase):
def test_lc_paths(self):
paths = sapaths.SAPaths()
paths.load_nodes_from_directory(r"E:\Output\LC")
self.assertNotEqual(paths, None)
def test_sa_paths(self):
paths = sapaths.SAPaths()
paths.load_nodes_from_directory(r"E:\scripts\Vanilla\Compiled\SA")
self.assertNotEqual(paths, None)
"""
class TestIVPath(unittest.TestCase):
def test_iv_paths(self):
paths = ivpaths.IVPaths()
paths.load_nodes_from_directory(r"E:\scripts\IVPaths")
self.assertNotEqual(paths, None)
if __name__ == '__main__':
paths = ivpaths.IVPaths()
paths.load_nodes_from_directory(r"E:\scripts\IVPaths")