コード例 #1
0
ファイル: EntryTest.php プロジェクト: robertodormepoco/zf2
 public function testCanSetAndGetService()
 {
     $data = new App();
     $this->entry->setService($data);
     $this->assertEquals($this->entry->getService(), $data);
     $data = null;
     $this->entry->setService($data);
     $this->assertEquals($this->entry->getService(), $data);
 }