BetterReflectionTest\Reflection\ReflectionClassTest::testGetDocCommentReturnsEmptyStringWithNoComment PHP Метод

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

    public function testGetDocCommentReturnsEmptyStringWithNoComment()
    {
        $reflector = new ClassReflector(new SingleFileSourceLocator(__DIR__ . '/../Fixture/ExampleClass.php'));
        $classInfo = $reflector->reflect('\\BetterReflectionTest\\FixtureOther\\AnotherClass');
        $this->assertSame('', $classInfo->getDocComment());
    }
ReflectionClassTest