コード例 #1
0
ファイル: TestProperty.php プロジェクト: rickyrobinett/morph
 public function testInvalidConstraintCombo()
 {
     $property = new Property($this->getMockQuery());
     $property->equals('ABC');
     $this->setExpectedException('RuntimeException');
     $property->greaterThan(25);
 }