spec\PhpSpec\Util\MethodAnalyserSpec::it_identifies_methods_without_standard_braces_as_non_empty PHP Метод

it_identifies_methods_without_standard_braces_as_non_empty() публичный Метод

    function it_identifies_methods_without_standard_braces_as_non_empty()
    {
        $this->methodIsEmpty('spec\\PhpSpec\\Util\\ExampleObject', 'nonEmptyOneLineMethod')->shouldReturn(false);
        $this->methodIsEmpty('spec\\PhpSpec\\Util\\ExampleObject', 'nonEmptyOneLineMethod2')->shouldReturn(false);
        $this->methodIsEmpty('spec\\PhpSpec\\Util\\ExampleObject', 'nonEmptyOneLineMethod3')->shouldReturn(false);
        $this->methodIsEmpty('spec\\PhpSpec\\Util\\ExampleObject', 'nonEmptyMethod2')->shouldReturn(false);
    }