class NotNullValidatorTest in Plug 7
Hierarchy
- class \Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest extends \Symfony\Component\Validator\Tests\Constraints\PHPUnit_Framework_TestCase- class \Symfony\Component\Validator\Tests\Constraints\NotNullValidatorTest
 
Expanded class hierarchy of NotNullValidatorTest
File
- lib/Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ NotNullValidatorTest.php, line 18 
Namespace
Symfony\Component\Validator\Tests\ConstraintsView source
class NotNullValidatorTest extends AbstractConstraintValidatorTest {
  protected function getApiVersion() {
    return Validation::API_VERSION_2_5;
  }
  protected function createValidator() {
    return new NotNullValidator();
  }
  /**
   * @dataProvider getValidValues
   */
  public function testValidValues($value) {
    $this->validator
      ->validate($value, new NotNull());
    $this
      ->assertNoViolation();
  }
  public function getValidValues() {
    return array(
      array(
        0,
      ),
      array(
        false,
      ),
      array(
        true,
      ),
      array(
        '',
      ),
    );
  }
  public function testNullIsInvalid() {
    $constraint = new NotNull(array(
      'message' => 'myMessage',
    ));
    $this->validator
      ->validate(null, $constraint);
    $this
      ->buildViolation('myMessage')
      ->assertRaised();
  }
} 
      