diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/__init__.py | 0 | ||||
-rw-r--r-- | tests/test_reachability.py | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/__init__.py diff --git a/tests/test_reachability.py b/tests/test_reachability.py new file mode 100644 index 0000000..318309b --- /dev/null +++ b/tests/test_reachability.py @@ -0,0 +1,14 @@ +import unittest +from sources.reachability import reach + + +class TestReachability(unittest.TestCase): + + def testName(self): + adj = [[1, 3],[], [1],[2]] + self.assertEqual(1, reach(adj, 0, 3)) + + +if __name__ == "__main__": + #import sys;sys.argv = ['', 'Test.testName'] + unittest.main()
\ No newline at end of file |