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