From 56598596a4343a0709358d7c88dc41ef6ca25d69 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sun, 27 Nov 2016 18:09:51 +0100 Subject: [PATCH] #6017 adding `@group` annotation to newly introduced tests --- tests/Doctrine/Tests/ORM/UnitOfWorkTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php b/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php index 6e22ed498..523baf071 100644 --- a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php +++ b/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php @@ -350,6 +350,9 @@ class UnitOfWorkTest extends OrmTestCase $this->assertFalse($this->_unitOfWork->isScheduledForInsert($entity2)); } + /** + * @group 6017 + */ public function testClearManagerWithObject() { $this->expectException(ORMException::class); @@ -360,6 +363,9 @@ class UnitOfWorkTest extends OrmTestCase $this->_unitOfWork->clear($entity); } + /** + * @group 6017 + */ public function testClearManagerWithNullValue() { $entity = new Country(456, 'United Kingdom');