summaryrefslogtreecommitdiff
path: root/tests/test_reachability.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_reachability.py')
-rw-r--r--tests/test_reachability.py14
1 files changed, 14 insertions, 0 deletions
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