def testArea(self): p1 = Punto(0, 0) p2 = Punto(4, 0) p3 = Punto(3, 2) t = Triangulo(p1, p2, p3) self.assertEqual(4.000000000000001, t.hallarArea())
def testHallarArea(self): p1 = Punto(0, 3) p2 = Punto(1, 0) p3 = Punto(-1, 0) t = Triangulo(p1, p2, p3) self.assertEqual(3.0000000000000004, t.hallarArea())