public function ExpressionBuilderTest::testEq in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ExpressionBuilderTest.php \Doctrine\Tests\Common\Collections\ExpressionBuilderTest::testEq()
 
File
- vendor/
doctrine/ collections/ tests/ Doctrine/ Tests/ Common/ Collections/ ExpressionBuilderTest.php, line 46  
Class
- ExpressionBuilderTest
 - @group DDC-1637
 
Namespace
Doctrine\Tests\Common\CollectionsCode
public function testEq() {
  $expr = $this->builder
    ->eq("a", "b");
  $this
    ->assertInstanceOf('Doctrine\\Common\\Collections\\Expr\\Comparison', $expr);
  $this
    ->assertEquals(Comparison::EQ, $expr
    ->getOperator());
}