ApiPlatform\Core\Tests\Metadata\Property\Factory\AnnotationPropertyNameCollectionFactoryTest::testClassDoesNotExist PHP Method

testClassDoesNotExist() public method

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