コード例 #1
0
ファイル: EventTest.php プロジェクト: derhansen/sf_event_mgt
 /**
  * @test
  * @return void
  */
 public function setPriceOptionSetsPriceOptionForPriceOption()
 {
     $priceOption = new \DERHANSEN\SfEventMgt\Domain\Model\PriceOption();
     $this->subject->setPriceOptions($priceOption);
     $this->assertEquals($priceOption, $this->subject->getPriceOptions());
 }