libs-base/Tests/base/NSConnection/connection.m

37 lines
1.2 KiB
Mathematica
Raw Normal View History

#import "Testing.h"
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSBundle.h>
#import <Foundation/NSConnection.h>
#import <Foundation/NSException.h>
#import <Foundation/NSFileManager.h>
#import <Foundation/NSString.h>
int main()
{
NSAutoreleasePool *arp = [NSAutoreleasePool new];
NSBundle *bundle;
NSString *bundlePath = [[NSFileManager defaultManager] currentDirectoryPath];
bundlePath = [bundlePath stringByAppendingPathComponent: @"Resources"];
bundlePath = [NSBundle pathForResource: @"TestConnection"
ofType: @"bundle"
inDirectory: bundlePath];
bundle = [NSBundle bundleWithPath: bundlePath];
PASS([bundle load],"We can load the test bundle");
{
/* this should probably be rewritten to uh return a bool */
NS_DURING
NSDate *date;
NSRunLoop *run = [NSRunLoop currentRunLoop];
[NSClassFromString(@"Tester") performSelector: @selector(startup)];
date = [NSDate dateWithTimeIntervalSinceNow: 3.0];
[run runUntilDate: date];
PASS(1, "NSConnection can do a simple connection");
NS_HANDLER
PASS(0, "NSConnection can do a simple connection");
NS_ENDHANDLER
}
[arp release]; arp = nil;
return 0;
}