public function ConstraintTest::testRequiredOptionsMustBeDefined

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/ConstraintTest.php, line 81

Class

ConstraintTest

Namespace

Symfony\Component\Validator\Tests

Code

public function testRequiredOptionsMustBeDefined() {
  $this
    ->setExpectedException('Symfony\\Component\\Validator\\Exception\\MissingOptionsException');
  new ConstraintC();
}