From 6149e6ba6be2d253384d34196826b26c8287610b Mon Sep 17 00:00:00 2001 From: Haidong Ji Date: Sun, 10 May 2020 17:56:56 -0500 Subject: Reachability done! --- tests/test_reachability.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/test_reachability.py (limited to 'tests/test_reachability.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 -- cgit v1.2.3