コード例 #1
0
ファイル: ContainerTest.php プロジェクト: jyothid/Xdocker
 public function testGetExpectationCount_simplestMock()
 {
     $m = $this->container->mock();
     $m->shouldReceive('foo')->andReturn('bar');
     $this->assertEquals(1, $this->container->mockery_getExpectationCount());
 }