Changeset 4364 for trunk/tests_old/Ticket
- Timestamp:
- 05/13/08 22:20:34 (8 months ago)
- Location:
- trunk/tests_old/Ticket
- Files:
-
- 12 modified
-
438TestCase.php (modified) (3 diffs)
-
480TestCase.php (modified) (1 diff)
-
626BTestCase.php (modified) (4 diffs)
-
626CTestCase.php (modified) (2 diffs)
-
626DTestCase.php (modified) (1 diff)
-
638TestCase.php (modified) (3 diffs)
-
642TestCase.php (modified) (1 diff)
-
673TestCase.php (modified) (1 diff)
-
697TestCase.php (modified) (1 diff)
-
741TestCase.php (modified) (2 diffs)
-
749TestCase.php (modified) (2 diffs)
-
912TestCase.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests_old/Ticket/438TestCase.php
r3882 r4364 108 108 109 109 110 class T438_Student extends Doctrine_ Record110 class T438_Student extends Doctrine_Entity 111 111 { 112 112 public static function initMetadata($class) … … 120 120 121 121 122 class T438_Course extends Doctrine_ Record122 class T438_Course extends Doctrine_Entity 123 123 { 124 124 public static function initMetadata($class) … … 131 131 } 132 132 133 class T438_StudentCourse extends Doctrine_ Record133 class T438_StudentCourse extends Doctrine_Entity 134 134 { 135 135 public static function initMetadata($class) -
trunk/tests_old/Ticket/480TestCase.php
r3882 r4364 32 32 */ 33 33 34 class stComment extends Doctrine_ Record34 class stComment extends Doctrine_Entity 35 35 { 36 36 public static function initMetadata($class) -
trunk/tests_old/Ticket/626BTestCase.php
r3882 r4364 89 89 90 90 91 class T626B_Student extends Doctrine_ Record91 class T626B_Student extends Doctrine_Entity 92 92 { 93 93 public static function initMetadata($class) … … 104 104 } 105 105 106 class T626_Group extends Doctrine_ Record106 class T626_Group extends Doctrine_Entity 107 107 { 108 108 public static function initMetadata($class) … … 118 118 119 119 120 class T626_Course extends Doctrine_ Record120 class T626_Course extends Doctrine_Entity 121 121 { 122 122 public static function initMetadata($class) … … 130 130 } 131 131 132 class T626B_StudentCourse extends Doctrine_ Record132 class T626B_StudentCourse extends Doctrine_Entity 133 133 { 134 134 public static function initMetadata($class) -
trunk/tests_old/Ticket/626CTestCase.php
r3882 r4364 63 63 64 64 65 class T626C_Student1 extends Doctrine_ Record65 class T626C_Student1 extends Doctrine_Entity 66 66 { 67 67 public static function initMetadata($class) … … 74 74 } 75 75 76 class T626C_Student2 extends Doctrine_ Record76 class T626C_Student2 extends Doctrine_Entity 77 77 { 78 78 public static function initMetadata($class) -
trunk/tests_old/Ticket/626DTestCase.php
r4338 r4364 47 47 48 48 49 class T626D_Student1 extends Doctrine_ Record49 class T626D_Student1 extends Doctrine_Entity 50 50 { 51 51 public static function initMetadata($class) -
trunk/tests_old/Ticket/638TestCase.php
r3882 r4364 106 106 107 107 108 class T638_Student extends Doctrine_ Record108 class T638_Student extends Doctrine_Entity 109 109 { 110 110 public static function initMetadata($class) … … 119 119 } 120 120 121 class T638_Course extends Doctrine_ Record121 class T638_Course extends Doctrine_Entity 122 122 { 123 123 public static function initMetadata($class) … … 135 135 } 136 136 137 class T638_StudentCourse extends Doctrine_ Record137 class T638_StudentCourse extends Doctrine_Entity 138 138 { 139 139 public static function initMetadata($class) -
trunk/tests_old/Ticket/642TestCase.php
r3882 r4364 51 51 52 52 53 class stDummyObj extends Doctrine_ Record53 class stDummyObj extends Doctrine_Entity 54 54 { 55 55 public static function initMetadata($class) -
trunk/tests_old/Ticket/673TestCase.php
r3882 r4364 59 59 60 60 61 class T673_Student extends Doctrine_ Record61 class T673_Student extends Doctrine_Entity 62 62 { 63 63 public static function initMetadata($class) -
trunk/tests_old/Ticket/697TestCase.php
r4101 r4364 37 37 } 38 38 39 class T697_Person extends Doctrine_ Record39 class T697_Person extends Doctrine_Entity 40 40 { 41 41 public static function initMetadata($class) -
trunk/tests_old/Ticket/741TestCase.php
r3701 r4364 30 30 31 31 32 class Parent741 extends Doctrine_ Record32 class Parent741 extends Doctrine_Entity 33 33 { 34 34 public static function initMetadata($class) … … 45 45 } 46 46 47 class Child741 extends Doctrine_ Record47 class Child741 extends Doctrine_Entity 48 48 { 49 49 public static function initMetadata($class) -
trunk/tests_old/Ticket/749TestCase.php
r3882 r4364 85 85 } 86 86 87 class Parent749 extends Doctrine_ Record87 class Parent749 extends Doctrine_Entity 88 88 { 89 89 public function setTableDefinition() … … 125 125 } 126 126 127 class RelatedRecord749 extends Doctrine_ Record127 class RelatedRecord749 extends Doctrine_Entity 128 128 { 129 129 public function setTableDefinition() -
trunk/tests_old/Ticket/912TestCase.php
r4119 r4364 97 97 */ 98 98 99 class ticket912_Resume extends Doctrine_ Record99 class ticket912_Resume extends Doctrine_Entity 100 100 { 101 101 public static function initMetadata($mapping) … … 125 125 * First level one to one relation class Language 126 126 */ 127 class ticket912_Person extends Doctrine_ Record127 class ticket912_Person extends Doctrine_Entity 128 128 { 129 129 public static function initMetadata($mapping) … … 145 145 */ 146 146 147 class ticket912_ResumeHasLanguage extends Doctrine_ Record147 class ticket912_ResumeHasLanguage extends Doctrine_Entity 148 148 { 149 149 public static function initMetadata($mapping) … … 193 193 * Third level one to one relation class Language 194 194 */ 195 class ticket912_Language extends Doctrine_ Record195 class ticket912_Language extends Doctrine_Entity 196 196 { 197 197 public static function initMetadata($mapping) … … 215 215 */ 216 216 217 class ticket912_LanguageLevel extends Doctrine_ Record217 class ticket912_LanguageLevel extends Doctrine_Entity 218 218 { 219 219 public static function initMetadata($mapping)