spec\PhpSpec\CodeGenerator\Generator\NewFileNotifyingGeneratorSpec::it_should_proxy_the_support_call_to_the_decorated_object PHP 메소드

it_should_proxy_the_support_call_to_the_decorated_object() 공개 메소드

public it_should_proxy_the_support_call_to_the_decorated_object ( $generator, PhpSpec\Locator\Resource $resource )
$resource PhpSpec\Locator\Resource
    function it_should_proxy_the_support_call_to_the_decorated_object($generator, Resource $resource)
    {
        $generator->supports($resource, 'foo', array('bar'))->willReturn(true);
        $this->supports($resource, 'foo', array('bar'))->shouldReturn(true);
    }