public function ExpressionBuilderTest::testLt in Plug 7
File
- lib/doctrine/ collections/ tests/ Doctrine/ Tests/ Common/ Collections/ ExpressionBuilderTest.php, line 62 
Class
- ExpressionBuilderTest
- @group DDC-1637
Namespace
Doctrine\Tests\Common\CollectionsCode
public function testLt() {
  $expr = $this->builder
    ->lt("a", "b");
  $this
    ->assertInstanceOf('Doctrine\\Common\\Collections\\Expr\\Comparison', $expr);
  $this
    ->assertEquals(Comparison::LT, $expr
    ->getOperator());
}