コード例 #1
0
 def test_circle_max_point(self):
     '''Test Circle.max_point()'''
     cir = Circle(2, 3, 4)
     bottom_right = cir.max_point()
     self.assertEqual(bottom_right.x, 6)
     self.assertEqual(bottom_right.y, 7)