public function testIsOutsideWall() { $wall = new Wall(); $wall->setType(Wall::AUE); $wallService = new WallService(); $this->assertTrue($wallService->isOutsideWall($wall)); }
public function isOutsideWall(Wall $wall) { return $wall->getType() === Wall::AUE; }