2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / objc / execute / class-13.m
blob1d685e3a797f09d85fcbf1a4bc14bb92d9d633ba
1 /* Contributed by Nicola Pero - Tue Mar  6 23:05:53 CET 2001 */
3 #include <objc/objc.h>
5 /* Tests creating a root class and a subclass with a class accessor
6    methods and a subclass overriding the superclass' implementation
7    but reusing it with super */
9 @interface RootClass
11   Class isa;
13 @end
15 @implementation RootClass
16 + initialize { return self; }
17 @end
19 static int class_variable = 0;
21 @interface SubClass : RootClass
22 + (void) setState: (int)number;
23 + (int) state;
24 @end
26 @implementation SubClass
27 + (void) setState: (int)number
29   class_variable = number;
31 + (int) state
33   return class_variable;
35 @end
37 @interface SubSubClass : SubClass
38 @end
40 @implementation SubSubClass
41 + (int) state
43   return [super state] + 1;
45 @end
47 #include "class-tests-1.h"
48 #define TYPE_OF_OBJECT_WITH_ACCESSOR_METHOD Class
49 #include "class-tests-2.h"
51 int main (void)
53   Class class;
54   Class sub_class;
56   test_class_with_superclass ("SubClass", "RootClass");
57   test_that_class_has_class_method ("SubClass", @selector (setState:));
58   test_that_class_has_class_method ("SubClass", @selector (state));
60   test_class_with_superclass ("SubSubClass", "SubClass");
61   test_that_class_has_class_method ("SubSubClass", @selector (setState:));
62   test_that_class_has_class_method ("SubSubClass", @selector (state));
63   
64   class = objc_getClass ("SubClass");
65   test_accessor_method (class, 0, -1, -1, 1, 1);
67   sub_class = objc_getClass ("SubSubClass");
68   class_variable = 0;
69   test_accessor_method (sub_class, 1, -1, 0, 1, 2);
71   return 0;