public function PersistentObjectTest::testAddInvalidCollection in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ PersistentObjectTest.php, line 138
Class
- PersistentObjectTest
- @group DDC-1448
Namespace
Doctrine\Tests\Common\PersistenceCode
public function testAddInvalidCollection() {
$this
->setExpectedException('BadMethodCallException');
$this->object
->addAsdf(new \stdClass());
}