diff options
author | Haidong Ji | 2020-05-10 17:56:56 -0500 |
---|---|---|
committer | Haidong Ji | 2020-05-10 17:56:56 -0500 |
commit | 6149e6ba6be2d253384d34196826b26c8287610b (patch) | |
tree | 5dabd04e5787ac1325874abb2335a9dacffe826d /tests |
Reachability done!
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 |