public function ConstraintTest::testAllowsSettingZeroRequiredPropertyValue

File

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

Class

ConstraintTest

Namespace

Symfony\Component\Validator\Tests

Code

public function testAllowsSettingZeroRequiredPropertyValue() {
  $constraint = new ConstraintA(0);
  $this
    ->assertEquals(0, $constraint->property2);
}