public function testCourt()
 {
     $this->assertEmpty($this->reservation->getCourt());
     $this->reservation->setCourt($this->court);
     $this->assertEquals($this->court, $this->reservation->getCourt());
 }
Пример #2
0
 /**
  * @covers AppBundle\Entity\Reservation::getCourt
  * Implement testGetCourt().
  */
 public function testGetCourt()
 {
     $this->assertEmpty($this->reservation->getCourt());
 }