Reorg test fixtures

This commit is contained in:
Joshua Peek
2012-06-07 12:17:24 -05:00
parent a708993388
commit 4df3199818
153 changed files with 130 additions and 314 deletions

8
test/fixtures/objective-c/Foo.h vendored Normal file
View File

@@ -0,0 +1,8 @@
#import <Foundation/Foundation.h>
@interface Foo : NSObject {
}
@end

6
test/fixtures/objective-c/Foo.m vendored Normal file
View File

@@ -0,0 +1,6 @@
#import "Foo.h"
@implementation Foo
@end

View File

@@ -0,0 +1,10 @@
#import <Cocoa/Cocoa.h>
@interface FooAppDelegate : NSObject <NSApplicationDelegate> {
@private
NSWindow *window;
}
@property (assign) IBOutlet NSWindow *window;
@end

View File

@@ -0,0 +1,12 @@
#import "FooAppDelegate.h"
@implementation FooAppDelegate
@synthesize window;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
}
@end

0
test/fixtures/objective-c/empty.m vendored Normal file
View File

7
test/fixtures/objective-c/hello.m vendored Normal file
View File

@@ -0,0 +1,7 @@
#import <Cocoa/Cocoa.h>
int main(int argc, char *argv[])
{
NSLog(@"Hello, World!\n");
return 0;
}