1 /* Contributed by Nicola Pero - Tue Mar 6 23:05:53 CET 2001 */
5 /* Tests creating a root class and a subclass with an ivar and
6 accessor methods and a subclass overriding the superclass'
7 implementation and using self to call another method of itself - in
16 @implementation RootClass
17 + initialize { return self; }
20 @interface SubClass : RootClass
24 - (void) setState: (int)number;
28 @implementation SubClass
29 - (void) setState: (int)number
39 @interface SubSubClass : SubClass
43 @implementation SubSubClass
50 @implementation SubSubClass (Additions)
53 return state + [self shift];
57 #include "class-tests-1.h"
58 #define TYPE_OF_OBJECT_WITH_ACCESSOR_METHOD SubClass *
59 #include "class-tests-2.h"
64 SubSubClass *sub_object;
66 test_class_with_superclass ("SubClass", "RootClass");
67 test_that_class_has_instance_method ("SubClass", @selector (setState:));
68 test_that_class_has_instance_method ("SubClass", @selector (state));
70 test_class_with_superclass ("SubSubClass", "SubClass");
71 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
72 test_that_class_has_instance_method ("SubSubClass", @selector (state));
73 test_that_class_has_instance_method ("SubSubClass", @selector (shift));
75 object = class_createInstance (objc_getClass ("SubClass"), 0);
76 test_accessor_method (object, 0, -1, -1, 1, 1);
78 sub_object = class_createInstance (objc_getClass ("SubSubClass"), 0);
79 test_accessor_method (sub_object, 1, -1, 0, 1, 2);