From 871dc5d186d8131e48368585354a5109357f1316 Mon Sep 17 00:00:00 2001 From: Anton Stoeckl Date: Fri, 14 Mar 2014 12:32:49 +0100 Subject: [PATCH] Test are for fix of ticket DDC-3028 Added 3 tests that check regression for: - columnPrefix is empty - columnPrefix is a string - columnPrefix is false Added some small entity / embeddable classes to support the test cases. --- tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php b/tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php index 5f49c9a90..8820fe501 100644 --- a/tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php @@ -180,8 +180,6 @@ class ValueObjectsTest extends \Doctrine\Tests\OrmFunctionalTestCase )); } - - public function testInlineEmbeddableWithPrefix() { $expectedColumnName = 'foobar_id'; @@ -214,8 +212,6 @@ class ValueObjectsTest extends \Doctrine\Tests\OrmFunctionalTestCase $this->assertEquals($expectedColumnName, $actualColumnName); } - - }