1 | #!/usr/bin/env python2 |
2 | from __future__ import print_function |
3 | """ |
4 | pyassem_test.py: Tests for pyassem.py |
5 | """ |
6 | |
7 | import unittest |
8 | |
9 | # TODO: This import breaks unit test discovery. |
10 | #from compiler2 import pyassem # module under test |
11 | |
12 | |
13 | class PyAssemTest(unittest.TestCase): |
14 | |
15 | def setUp(self): |
16 | pass |
17 | |
18 | def tearDown(self): |
19 | pass |
20 | |
21 | def testFoo(self): |
22 | #g = pyassem.FlowGraph() |
23 | #print(g) |
24 | pass |
25 | |
26 | |
27 | if __name__ == '__main__': |
28 | unittest.main() |