Ejemplo n.º 1
0
 public function testIsOutsideWall()
 {
     $wall = new Wall();
     $wall->setType(Wall::AUE);
     $wallService = new WallService();
     $this->assertTrue($wallService->isOutsideWall($wall));
 }
Ejemplo n.º 2
0
 public function isOutsideWall(Wall $wall)
 {
     return $wall->getType() === Wall::AUE;
 }