예제 #1
0
파일: BaseTestCase.php 프로젝트: jasir/Ra
 protected function tearDown()
 {
     $this->mockista->assertExpectations();
 }
예제 #2
0
 /**
  * @expectedException Mockista\MockException
  */
 function testAssertExpectations()
 {
     $mock1 = $this->object->create();
     $mock1->expects('abc')->twice();
     $this->object->assertExpectations();
 }