ApiPlatform\SchemaGenerator\Tests\AnnotationGenerator\ApiPlatformCoreAnnotationGeneratorTest::testGenerateFieldAnnotations PHP Method

testGenerateFieldAnnotations() public method

    public function testGenerateFieldAnnotations()
    {
        $this->assertSame(['@ApiProperty(iri="http://schema.org/prop")'], $this->generator->generateFieldAnnotations('Res', 'prop'));
        $this->assertSame([], $this->generator->generateFieldAnnotations('Res', 'customProp'));
    }