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

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

public testGetConstants ( )
    public function testGetConstants()
    {
        $reflector = new ClassReflector($this->getComposerLocator());
        $classInfo = $reflector->reflect('\\BetterReflectionTest\\Fixture\\ExampleClass');
        $this->assertSame(['MY_CONST_1' => 123, 'MY_CONST_2' => 234], $classInfo->getConstants());
    }
ReflectionClassTest