예제 #1
0
 /**
  * Sets the area of the triangle. 
  */
 public function setArea()
 {
     $this->area = $this->sides->getArea();
 }
예제 #2
0
 public function testGetArea()
 {
     $triangle = new TriangleSides(3, 4, 5);
     $this->assertEquals(6.0, $triangle->getArea());
 }