/**
  * test sanity check min < max with PHP_INT_MAX
  */
 function testIntegerVR_MinMax()
 {
     $ivr = new IntegerValidationRule('An_Integer', null, PHP_INT_MAX, 1 - PHP_INT_MAX);
     $this->setExpectedException('RuntimeException');
     $ivr->getValid('testIntegerVR_MinMax', '0');
 }