Beispiel #1
0
 public function test_can_check_if_a_binding_exists()
 {
     $abstract = 'abstract';
     $this->wrappedMock->shouldReceive('bound')->with($abstract)->once()->andReturn(true);
     $this->assertTrue($this->container->has($abstract));
 }