public function AnnotationLoaderTest::testLoadClassMetadataReturnsFalseIfNotSuccessful in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Mapping/Loader/AnnotationLoaderTest.php \Symfony\Component\Validator\Tests\Mapping\Loader\AnnotationLoaderTest::testLoadClassMetadataReturnsFalseIfNotSuccessful()
File
- vendor/
symfony/ validator/ Tests/ Mapping/ Loader/ AnnotationLoaderTest.php, line 37
Class
Namespace
Symfony\Component\Validator\Tests\Mapping\LoaderCode
public function testLoadClassMetadataReturnsFalseIfNotSuccessful() {
$loader = new AnnotationLoader(new AnnotationReader());
$metadata = new ClassMetadata('\\stdClass');
$this
->assertFalse($loader
->loadClassMetadata($metadata));
}