@@ -50,36 +50,36 @@ public function testInheritanceGeneration()
50
50
$ schemaTestInheritanceChild1Table = new ReflectionClass ('SchemaTestInheritanceChild1Table ' );
51
51
$ schemaTestInheritanceChild2Table = new ReflectionClass ('SchemaTestInheritanceChild2Table ' );
52
52
53
- $ this ->assertTrue ($ schemaTestInheritanceParent ->isSubClassOf ('Doctrine_Record ' ));
54
- $ this ->assertTrue ($ schemaTestInheritanceParent ->isSubClassOf ('BaseSchemaTestInheritanceParent ' ));
55
- $ this ->assertTrue ($ schemaTestInheritanceParent ->isSubClassOf ('PackageSchemaTestInheritanceParent ' ));
56
- $ this ->assertTrue ($ schemaTestInheritanceChild1 ->isSubClassOf ('BaseSchemaTestInheritanceChild1 ' ));
57
- $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubClassOf ('BaseSchemaTestInheritanceChild2 ' ));
53
+ $ this ->assertTrue ($ schemaTestInheritanceParent ->isSubclassOf ('Doctrine_Record ' ));
54
+ $ this ->assertTrue ($ schemaTestInheritanceParent ->isSubclassOf ('BaseSchemaTestInheritanceParent ' ));
55
+ $ this ->assertTrue ($ schemaTestInheritanceParent ->isSubclassOf ('PackageSchemaTestInheritanceParent ' ));
56
+ $ this ->assertTrue ($ schemaTestInheritanceChild1 ->isSubclassOf ('BaseSchemaTestInheritanceChild1 ' ));
57
+ $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubclassOf ('BaseSchemaTestInheritanceChild2 ' ));
58
58
59
- $ this ->assertTrue ($ schemaTestInheritanceChild1 ->isSubClassOf ('SchemaTestInheritanceParent ' ));
60
- $ this ->assertTrue ($ schemaTestInheritanceChild1 ->isSubClassOf ('BaseSchemaTestInheritanceParent ' ));
59
+ $ this ->assertTrue ($ schemaTestInheritanceChild1 ->isSubclassOf ('SchemaTestInheritanceParent ' ));
60
+ $ this ->assertTrue ($ schemaTestInheritanceChild1 ->isSubclassOf ('BaseSchemaTestInheritanceParent ' ));
61
61
62
- $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubClassOf ('SchemaTestInheritanceParent ' ));
63
- $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubClassOf ('BaseSchemaTestInheritanceParent ' ));
64
- $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubClassOf ('SchemaTestInheritanceChild1 ' ));
65
- $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubClassOf ('BaseSchemaTestInheritanceChild1 ' ));
66
- $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubClassOf ('PackageSchemaTestInheritanceParent ' ));
62
+ $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubclassOf ('SchemaTestInheritanceParent ' ));
63
+ $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubclassOf ('BaseSchemaTestInheritanceParent ' ));
64
+ $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubclassOf ('SchemaTestInheritanceChild1 ' ));
65
+ $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubclassOf ('BaseSchemaTestInheritanceChild1 ' ));
66
+ $ this ->assertTrue ($ schemaTestInheritanceChild2 ->isSubclassOf ('PackageSchemaTestInheritanceParent ' ));
67
67
68
- $ this ->assertTrue ($ schemaTestInheritanceParentTable ->isSubClassOf ('Doctrine_Table ' ));
69
- $ this ->assertTrue ($ schemaTestInheritanceChild1Table ->isSubClassOf ('SchemaTestInheritanceParentTable ' ));
70
- $ this ->assertTrue ($ schemaTestInheritanceChild1Table ->isSubClassOf ('PackageSchemaTestInheritanceParentTable ' ));
68
+ $ this ->assertTrue ($ schemaTestInheritanceParentTable ->isSubclassOf ('Doctrine_Table ' ));
69
+ $ this ->assertTrue ($ schemaTestInheritanceChild1Table ->isSubclassOf ('SchemaTestInheritanceParentTable ' ));
70
+ $ this ->assertTrue ($ schemaTestInheritanceChild1Table ->isSubclassOf ('PackageSchemaTestInheritanceParentTable ' ));
71
71
72
- $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubClassOf ('SchemaTestInheritanceParentTable ' ));
73
- $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubClassOf ('PackageSchemaTestInheritanceParentTable ' ));
74
- $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubClassOf ('SchemaTestInheritanceChild1Table ' ));
75
- $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubClassOf ('PackageSchemaTestInheritanceChild1Table ' ));
72
+ $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubclassOf ('SchemaTestInheritanceParentTable ' ));
73
+ $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubclassOf ('PackageSchemaTestInheritanceParentTable ' ));
74
+ $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubclassOf ('SchemaTestInheritanceChild1Table ' ));
75
+ $ this ->assertTrue ($ schemaTestInheritanceChild2Table ->isSubclassOf ('PackageSchemaTestInheritanceChild1Table ' ));
76
76
77
77
# Simple Inheritance
78
78
$ schemaTestSimpleInheritanceParent = new ReflectionClass ('SchemaTestSimpleInheritanceParent ' );
79
79
$ schemaTestSimpleInheritanceChild = new ReflectionClass ('SchemaTestSimpleInheritanceChild ' );
80
80
81
81
$ this ->assertTrue ($ schemaTestSimpleInheritanceParent ->hasMethod ('setTableDefinition ' ));
82
- $ this ->assertTrue ($ schemaTestSimpleInheritanceChild ->isSubClassOf ('SchemaTestSimpleInheritanceParent ' ));
82
+ $ this ->assertTrue ($ schemaTestSimpleInheritanceChild ->isSubclassOf ('SchemaTestSimpleInheritanceParent ' ));
83
83
84
84
# Class Table Inheritance
85
85
$ schemaTestClassTableInheritanceParent = new ReflectionClass ('SchemaTestClassTableInheritanceParent ' );
0 commit comments