示例#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();
 }