ApiPlatform\Core\Tests\Metadata\Property\Factory\AnnotationPropertyNameCollectionFactoryTest::testClassDoesNotExist PHP 메소드

testClassDoesNotExist() 공개 메소드

    public function testClassDoesNotExist()
    {
        $reader = $this->prophesize(Reader::class);
        $factory = new AnnotationPropertyNameCollectionFactory($reader->reveal());
        $factory->create('\\DoNotExist');
    }
AnnotationPropertyNameCollectionFactoryTest