Neos\Flow\Tests\Functional\Reflection\ReflectionServiceTest::booleanPropertiesGetANormlizedType PHP Метод

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

    public function booleanPropertiesGetANormlizedType()
    {
        $className = Reflection\Fixtures\DummyClassWithProperties::class;
        $varTagValues = $this->reflectionService->getPropertyTagValues($className, 'boolProperty', 'var');
        $this->assertCount(1, $varTagValues);
        $this->assertEquals('boolean', $varTagValues[0]);
        $varTagValues = $this->reflectionService->getPropertyTagValues($className, 'booleanProperty', 'var');
        $this->assertCount(1, $varTagValues);
        $this->assertEquals('boolean', $varTagValues[0]);
    }