You are here

public function ExpressionBuilderTest::testInvalidAndXArgument in Plug 7

File

lib/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ExpressionBuilderTest.php, line 40

Class

ExpressionBuilderTest
@group DDC-1637

Namespace

Doctrine\Tests\Common\Collections

Code

public function testInvalidAndXArgument() {
  $this
    ->setExpectedException("RuntimeException");
  $this->builder
    ->andX("foo");
}