From 68615a9ad2c942254135cffb00cf25a84a3b1356 Mon Sep 17 00:00:00 2001 From: Prefetch Date: Sat, 31 Dec 2022 22:21:39 +0100 Subject: Initial commit --- 06/test.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 06/test.py (limited to '06/test.py') diff --git a/06/test.py b/06/test.py new file mode 100755 index 0000000..ea9380a --- /dev/null +++ b/06/test.py @@ -0,0 +1,36 @@ +#!/usr/bin/python + +import unittest + +import main + + + +class ExamplesPart1(unittest.TestCase): + def test_example1(self): + lines = ["turn on 0,0 through 999,999"] + self.assertEqual(main.solve_partn(1, lines), 1000000) + + def test_example2(self): + lines = ["turn on 0,0 through 999,999", "toggle 0,0 through 999,0"] + self.assertEqual(main.solve_partn(1, lines), 999000) + + def test_example3(self): + lines = ["turn on 0,0 through 999,999", "turn off 499,499 through 500,500"] + self.assertEqual(main.solve_partn(1, lines), 999996) + + + +class ExamplesPart2(unittest.TestCase): + def test_example1(self): + lines = ["turn on 0,0 through 0,0"] + self.assertEqual(main.solve_partn(2, lines), 1) + + def test_example2(self): + lines = ["toggle 0,0 through 999,999"] + self.assertEqual(main.solve_partn(2, lines), 2000000) + + + +if __name__ == "__main__": + unittest.main() -- cgit v1.2.3