You are here

public function PersistentObjectTest::testAddInvalidToManyAssociation in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php \Doctrine\Tests\Common\Persistence\PersistentObjectTest::testAddInvalidToManyAssociation()

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php, line 117

Class

PersistentObjectTest
@group DDC-1448

Namespace

Doctrine\Tests\Common\Persistence

Code

public function testAddInvalidToManyAssociation() {
  $this
    ->setExpectedException('InvalidArgumentException');
  $this->object
    ->addChildren(new \stdClass());
}