Ejemplo n.º 1
0
 public function testCheckPoint()
 {
     $ship = new Ship('Destroyer', 3);
     $point = new Point(5, 7);
     $this->assertFalse($ship->checkPoint($point));
     $ship->setPoint($point);
     $this->assertTrue($ship->checkPoint($point));
 }