Exemplo n.º 1
0
 public function testGreaterThan()
 {
     $condition = Condition::greaterThan('age', 51);
     $this->assertSame($condition->getLeft(), 'age');
     $this->assertFalse($condition->shouldEscapeLeft());
     $this->assertSame($condition->getOperator(), '>');
     $this->assertSame($condition->getRight(), 51);
     $this->assertTrue($condition->shouldEscapeRight());
 }