From 712b6a7a64341856adf2cc02b5a1888dfbab7b3b Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 17 Mar 2015 21:23:16 +0000 Subject: [PATCH] #1336 DDC-3622 - adding `@group` annotations for newly introduced tests --- .../Tests/ORM/Functional/CustomIdObjectTypeTest.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php b/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php index 47fafcac2..9617644a9 100644 --- a/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php @@ -52,6 +52,10 @@ class CustomIdObjectTypeTest extends OrmFunctionalTestCase $this->assertSame($parent, $result); } + /** + * @group DDC-3622 + * @group 1336 + */ public function testFetchJoinCustomIdObject() { $parent = new CustomIdObjectTypeParent('foo'); @@ -74,6 +78,10 @@ class CustomIdObjectTypeTest extends OrmFunctionalTestCase $this->assertSame($parent, $result[0]); } + /** + * @group DDC-3622 + * @group 1336 + */ public function testFetchJoinWhereCustomIdObject() { $parent = new CustomIdObjectTypeParent('foo');