spec\PhpSpec\Util\MethodAnalyserSpec::it_identifies_methods_from_traits PHP Method

it_identifies_methods_from_traits() public method

    function it_identifies_methods_from_traits()
    {
        $this->methodIsEmpty('spec\\PhpSpec\\Util\\ExampleObjectUsingTrait', 'emptyMethodInTrait')->shouldReturn(true);
        $this->methodIsEmpty('spec\\PhpSpec\\Util\\ExampleObjectUsingTrait', 'nonEmptyMethodInTrait')->shouldReturn(false);
    }