2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc / execute / class-7.m
blob3fddca77065e64734d8c3a78efdd8740b29b9355
1 /* Contributed by Nicola Pero - Tue Mar  6 23:05:53 CET 2001 */
2 #include <objc/objc.h>
3 #include <objc/objc-api.h>
5 #include "next_mapping.h"
7 /* Tests creating a root class and a subclass with an ivar and
8    accessor methods; accessor methods implemented in a separate
9    category */
11 @interface RootClass
13   Class isa;
15 @end
17 @implementation RootClass
18 #ifdef __NEXT_RUNTIME__                                   
19 + initialize { return self; }
20 #endif
21 @end
23 @interface SubClass : RootClass
25   int state;
27 @end
29 @implementation SubClass
30 @end
32 @interface SubClass (Additions)
33 - (void) setState: (int)number;
34 - (int) state;
35 @end
37 @implementation SubClass (Additions)
38 - (void) setState: (int)number
40   state = number;
42 - (int) state
44   return state;
46 @end
48 #include "class-tests-1.h"
49 #define TYPE_OF_OBJECT_WITH_ACCESSOR_METHOD SubClass *
50 #include "class-tests-2.h"
52 int main (void)
54   SubClass *object;
56   test_class_with_superclass ("SubClass", "RootClass");
58   /* The NeXT runtime's category implementation is lazy: categories are not attached 
59      to classes until the class is initialized (at +initialize time).  */
60 #ifdef __NEXT_RUNTIME__
61   [SubClass initialize];
62 #endif
64   test_that_class_has_instance_method ("SubClass", @selector (setState:));
65   test_that_class_has_instance_method ("SubClass", @selector (state));
67   object = class_create_instance (objc_lookup_class ("SubClass"));
68   test_accessor_method (object, 0, 1, 1, -3, -3);
70   return 0;