summaryrefslogtreecommitdiff
path: root/06/test.py
blob: ea9380adacbfa9f923d4afe963f85229d02d7602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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()