1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/usr/bin/python import unittest import main class ExamplesPart1(unittest.TestCase): def test_example1(self): prog = [ "inc b", "jio b, +2", "tpl b", "inc b" ] self.assertEqual(main.solve_partn(1, prog), 2) if __name__ == "__main__": unittest.main()