1 #import <Foundation/Foundation.h>
7 @interface MyClass : NSObject {
9 NSObject <MyProtocol> *myObject;
16 @implementation MyClass
20 NSLog(@"Hello"); //% self.expect("expression -- myId", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["id"]);
21 //% self.expect("expression -- myObject", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["NSObject"]);
30 MyClass *c = [MyClass alloc];