Example #1
0
 def test_run_pt2(self):
     input_list = common.loadInput('testInput3.txt', True)
     testObject = Day3.Solution()
     self.assertEqual(336, testObject.part2(input_list))
Example #2
0
 def test_run(self):
     #remember to set the assert to the known examples and place the example test into testInput3.txt!
     input_list = common.loadInput('testInput3.txt', True)
     testObject = Day3.Solution()
     self.assertEqual(7, testObject.part1(input_list))