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; -}