libs-base/Tests/base/NSBundle/Resources/TestFramework.m

17 lines
211 B
Mathematica
Raw Normal View History

#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>
@interface TestFramework : NSObject
{
}
-(NSString *)test;
@end
@implementation TestFramework
-(NSString *)test
{
return @"Something";
}
@end