Exemplo n.º 1
0
 /**
  * @test
  */
 public function getFoodReturnsFood()
 {
     $food = 'a hamburger';
     $seminar = new tx_seminars_seminar($this->seminarUid);
     $this->fixture->setRegistrationData($seminar, $this->feUserUid, array('food' => $food));
     self::assertSame($food, $this->fixture->getFood());
 }