コード例 #1
0
ファイル: BusStopTest.php プロジェクト: aiolos/haltes
 /**
  * @covers Application\Entity\BusStop::getType
  */
 public function testGetType()
 {
     $value = 1;
     $this->assertNull($this->object->getType());
     $this->object->setType($value);
     $this->assertEquals($value, $this->object->getType());
 }