Example #1
0
 /**
  * @expectedException ehough_mockery_mockery_Exception
  */
 public function testHasKeyConstraintThrowsExceptionWhenConstraintUnmatched()
 {
     $this->mock->shouldReceive('foo')->with(ehough_mockery_Mockery::hasKey('c'))->once();
     $this->mock->foo(array('a' => 1, 'b' => 3));
     $this->container->mockery_verify();
 }