You are here

public function CollectionTest::testRejectValidConstraintWithinOptional in Zircon Profile 8.0

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

@expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException

File

vendor/symfony/validator/Tests/Constraints/CollectionTest.php, line 58

Class

CollectionTest
@author Bernhard Schussek <bschussek@gmail.com>

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testRejectValidConstraintWithinOptional() {
  new Collection(array(
    'foo' => new Optional(new Valid()),
  ));
}