You are here

public function ExpressionBuilderTest::testInvalidAndXArgument in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ExpressionBuilderTest.php \Doctrine\Tests\Common\Collections\ExpressionBuilderTest::testInvalidAndXArgument()

File

vendor/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");
}