Beispiel #1
0
 public function testInvalidConstraintCombo()
 {
     $property = new Property($this->getMockQuery());
     $property->equals('ABC');
     $this->setExpectedException('RuntimeException');
     $property->greaterThan(25);
 }