Ejemplo n.º 1
0
 /**
  * @covers Application\Entity\BusStop::getName
  */
 public function testGetName()
 {
     $value = 'Station HS';
     $this->assertNull($this->object->getName());
     $this->object->setName($value);
     $this->assertEquals($value, $this->object->getName());
 }