1
0
mirror of synced 2024-12-13 06:46:03 +03:00
doctrine2/tests/unsolved.php

43 lines
1.0 KiB
PHP
Raw Normal View History

2007-05-24 17:02:26 +04:00
<?php
require_once dirname(__FILE__) . '/../lib/Doctrine.php';
error_reporting(E_ALL);
spl_autoload_register(array('Doctrine', 'autoload'));
require_once 'classes.php';
require_once dirname(__FILE__) . '/../models/location.php';
2007-05-24 17:04:57 +04:00
print "<pre>";
2007-05-24 17:02:26 +04:00
$manager = Doctrine_Manager::getInstance();
$dbh = Doctrine_Db::getConnection('sqlite::memory:');
$conn = $manager->openConnection($dbh);
$user = new User();
$user->name = 'zYne';
$user->Phonenumber[0]->phonenumber = '123 123';
if ($user === $user->Phonenumber[0]->entity_id) {
2007-05-24 17:04:57 +04:00
print 'case 1 works\n';
2007-05-24 17:02:26 +04:00
}
$city = new Record_City();
$city->name = 'City 1';
$city->District->name = 'District 1';
if ($city->District === $city->district_id) {
2007-05-24 17:04:57 +04:00
print 'case 2 works\n';
2007-05-24 17:02:26 +04:00
}
$c = new Record_Country();
$c->name = 'Some country';
$c->City[0]->name = 'City 1';
$c->City[0]->District->name = 'District 1';
2007-05-24 17:04:57 +04:00
print $c->City[0]->District . "\n";
print $c->City[0]->get('district_id'). "\n";
2007-05-24 17:02:26 +04:00
if ($c->City[0]->get('district_id') == $c->City[0]->District) {
2007-05-24 17:04:57 +04:00
print "case 3 works!\n";
2007-05-24 17:02:26 +04:00
}