You are here

public function MemberMetadataTest::testAddConstraintRequiresClassConstraints in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Mapping/MemberMetadataTest.php \Symfony\Component\Validator\Tests\Mapping\MemberMetadataTest::testAddConstraintRequiresClassConstraints()

File

vendor/symfony/validator/Tests/Mapping/MemberMetadataTest.php, line 62

Class

MemberMetadataTest

Namespace

Symfony\Component\Validator\Tests\Mapping

Code

public function testAddConstraintRequiresClassConstraints() {
  $this
    ->setExpectedException('Symfony\\Component\\Validator\\Exception\\ConstraintDefinitionException');
  $this->metadata
    ->addConstraint(new ClassConstraint());
}