From 9abbdb9e7f17480756540ed2068271ffcc67e6df Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sun, 18 Jan 2015 18:25:46 +0100 Subject: [PATCH] #1265 DDC-3517 - moved test assets to separate models dir, namespaced table names --- .../OneToOneSingleTableInheritance/Cat.php | 16 +++++++++ .../LitterBox.php | 15 ++++++++ .../OneToOneSingleTableInheritance/Pet.php | 17 ++++++++++ .../OneToOneSingleTableInheritanceTest.php | 34 ++----------------- 4 files changed, 51 insertions(+), 31 deletions(-) create mode 100644 tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.php create mode 100644 tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/LitterBox.php create mode 100644 tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Pet.php diff --git a/tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.php b/tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.php new file mode 100644 index 000000000..1e7eee014 --- /dev/null +++ b/tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.php @@ -0,0 +1,16 @@ +assertSame($cat->litterBox->id, $foundCat->litterBox->id); } } - -/** @Entity @InheritanceType("SINGLE_TABLE") @DiscriminatorMap({"cat" = "Cat"}) */ -abstract class Pet -{ - const CLASSNAME = __CLASS__; - - /** @Id @Column(type="integer") @GeneratedValue(strategy="AUTO") */ - public $id; -} - -/** @Entity */ -class Cat extends Pet -{ - const CLASSNAME = __CLASS__; - - /** - * @OneToOne(targetEntity="LitterBox") - * - * @var LitterBox - */ - public $litterBox; -} - -/** @Entity */ -class LitterBox -{ - const CLASSNAME = __CLASS__; - - /** @Id @Column(type="integer") @GeneratedValue(strategy="AUTO") */ - public $id; -}