From 0d82128b2e59c9142f1297bae13ed616405996ee Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 7 Jul 2016 20:57:02 +0200 Subject: [PATCH] Registering a managed entity with an empty identifier is to be disallowed --- tests/Doctrine/Tests/ORM/UnitOfWorkTest.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php b/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php index 6ccaa51e4..6a2c882e8 100644 --- a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php +++ b/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php @@ -419,6 +419,13 @@ class UnitOfWorkTest extends OrmTestCase ]; } + public function testRegisteringAManagedInstanceRequiresANonEmptyIdentifier() + { + $this->expectException(ORMInvalidArgumentException::class); + + $this->_unitOfWork->registerManaged(new EntityWithBooleanIdentifier(), [], []); + } + /** * @dataProvider entitiesWithInvalidIdentifiersProvider *