Skip to content

Commit e1f6715

Browse files
committed
Day 03: Unit test with positive test
1 parent 242bced commit e1f6715

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

03/test.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ def test_1(self):
1010
test_input = "5 10 25"
1111
self.execute_test(test_input)
1212
self.assertEqual(0, self.solution.get_solution(1))
13+
14+
def test_2(self):
15+
test_input = "20 10 25"
16+
self.execute_test(test_input)
17+
self.assertEqual(1, self.solution.get_solution(1))

0 commit comments

Comments
 (0)