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());
}