summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHaidong Ji2020-05-16 23:36:25 -0500
committerHaidong Ji2020-05-16 23:36:25 -0500
commit1cf5ca9ec07e2c3c125f075c10b2ba713dbc7c7c (patch)
tree2cf0ee84c55e5bb6c4e5a8b38e6c3cd838ae6d81 /tests
parent6149e6ba6be2d253384d34196826b26c8287610b (diff)
Connected Components done!
Diffstat (limited to 'tests')
-rw-r--r--tests/test_connected_components.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_connected_components.py b/tests/test_connected_components.py
new file mode 100644
index 0000000..10d7a23
--- /dev/null
+++ b/tests/test_connected_components.py
@@ -0,0 +1,12 @@
+import unittest
+from sources.connected_components import number_of_components
+
+class MyTestCase(unittest.TestCase):
+ def test_something(self):
+ adj = [[1], [0, 2], [1], []]
+
+ self.assertEqual(2, number_of_components(adj))
+
+
+if __name__ == '__main__':
+ unittest.main()