コード例 #1
0
 /**
  */
 public function testExist()
 {
     $id = 1;
     $exist = true;
     $this->repository->exist($id)->willReturn($exist)->shouldBeCalledTimes(1);
     $this->assertSame($exist, $this->manager->exist($id));
 }
コード例 #2
0
ファイル: ObjectManager.php プロジェクト: JahHub/fertilizer
 /**
  * @param int $id
  *
  * @return boolean
  */
 public function exist($id)
 {
     return $this->repository->exist($id);
 }