Exemplo n.º 1
0
	def test_min_point(self):
		point_array = [Point(10, 5), Point(3, 2), Point(5, 5), Point(6, 10)]
		algo = Algorithm(point_array)
		
		self.assertEqual(str(algo.min_point()), str(Point(3, 2)))