You are here

public function Abstract2Dot5ApiTest::testLegacyPropertyMetadataMustImplementPropertyMetadataInterface in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Validator/Abstract2Dot5ApiTest.php \Symfony\Component\Validator\Tests\Validator\Abstract2Dot5ApiTest::testLegacyPropertyMetadataMustImplementPropertyMetadataInterface()

@expectedException \Symfony\Component\Validator\Exception\UnsupportedMetadataException @group legacy

File

vendor/symfony/validator/Tests/Validator/Abstract2Dot5ApiTest.php, line 588

Class

Abstract2Dot5ApiTest
Verifies that a validator satisfies the API of Symfony 2.5+.

Namespace

Symfony\Component\Validator\Tests\Validator

Code

public function testLegacyPropertyMetadataMustImplementPropertyMetadataInterface() {
  $entity = new Entity();

  // Legacy interface
  $propertyMetadata = $this
    ->getMock('Symfony\\Component\\Validator\\MetadataInterface');
  $metadata = new FakeClassMetadata(get_class($entity));
  $metadata
    ->addCustomPropertyMetadata('firstName', $propertyMetadata);
  $this->metadataFactory
    ->addMetadata($metadata);
  $this->validator
    ->validate($entity);
}