コード例 #1
0
ファイル: ConditionTest.php プロジェクト: wafflesystems/dal
 public function testLessThanOrEquals()
 {
     $condition = Condition::lessThanOrEquals('age', 51);
     $this->assertSame($condition->getLeft(), 'age');
     $this->assertFalse($condition->shouldEscapeLeft());
     $this->assertSame($condition->getOperator(), '<=');
     $this->assertSame($condition->getRight(), 51);
     $this->assertTrue($condition->shouldEscapeRight());
 }