Neos\Flow\Tests\Functional\Reflection\ReflectionServiceTest::domainModelPropertyTypesAreExpandedWithUseStatementsInClassSchema PHP Method

domainModelPropertyTypesAreExpandedWithUseStatementsInClassSchema() public method

    public function domainModelPropertyTypesAreExpandedWithUseStatementsInClassSchema()
    {
        $classSchema = $this->reflectionService->getClassSchema(Reflection\Fixtures\Model\EntityWithUseStatements::class);
        $this->assertEquals(Reflection\Fixtures\Model\SubSubEntity::class, $classSchema->getProperty('subSubEntity')['type']);
        $this->assertEquals(Persistence\Fixtures\SubEntity::class, $classSchema->getProperty('propertyFromOtherNamespace')['type']);
    }