From af0d91fea58967b57a1fcde64d0415faa9271460 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 7 Jan 2007 19:40:06 +0000 Subject: [PATCH] --- tests/Relation/OneToOneTestCase.php | 54 +++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 tests/Relation/OneToOneTestCase.php diff --git a/tests/Relation/OneToOneTestCase.php b/tests/Relation/OneToOneTestCase.php new file mode 100644 index 000000000..3f1ae08a9 --- /dev/null +++ b/tests/Relation/OneToOneTestCase.php @@ -0,0 +1,54 @@ +. + */ + +/** + * Doctrine_Connection_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Relation_OneToOne_TestCase extends Doctrine_UnitTestCase { + public function testOneToOneAggregateRelationWithAliasesIsSupported() { + $city = new Record_City(); + $country = $city->Country; + + $this->assertTrue($country instanceof Record_Country); + } +} +class Record_Country extends Doctrine_Record { + public function setTableDefinition() { + $this->hasColumn('name', 'string', 200); + } +} +class Record_City extends Doctrine_Record { + public function setTableDefinition() { + $this->hasColumn('name', 'string', 200); + $this->hasColumn('country_id', 'integer'); + } + public function setUp() { + $this->hasOne('Record_Country as Country', 'Record_City.country_id'); + } +}