From 0904bc5cc52954c8afaab97fabe86e42ee3f5a7c Mon Sep 17 00:00:00 2001 From: beberlei Date: Sun, 29 Aug 2010 11:19:23 +0200 Subject: [PATCH] DDC-762 - Added test for NULL association finding in OneToOne relations --- .../OneToOneUnidirectionalAssociationTest.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php b/tests/Doctrine/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php index 01b2d00f9..3adde7c10 100644 --- a/tests/Doctrine/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php @@ -106,4 +106,20 @@ class OneToOneUnidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctiona )->fetchColumn(); $this->assertEquals($value, $foreignKey); } + + /** + * @group DDC-762 + */ + public function testNullForeignKey() + { + $product = new ECommerceProduct(); + $product->setName('Doctrine 2 Manual'); + + $this->_em->persist($product); + $this->_em->flush(); + + $product = $this->_em->find(get_class($product), $product->getId()); + + $this->assertNull($product->getShipping()); + } }