Esempio n. 1
0
 def test_N_asteroids_best_location_example4(self):
     station_finder = monotoring_station('Input/day10_part1_example4.txt' )
     station_finder.find_best_station_location()
     output = station_finder.N_visible_at_best_location
     expected_output = 210
     self.assertEqual(output, expected_output)
Esempio n. 2
0
 def test_best_location_example4(self):
     station_finder = monotoring_station('Input/day10_part1_example4.txt' )
     station_finder.find_best_station_location()
     output = station_finder.best_station_location
     expected_output = (11, 13)
     self.assertSequenceEqual(output, expected_output)