16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include "config.h"
#import "TestsAppDelegate.h"
#import "plugin/TestPlugin.h"
#ifndef OF_IOS
static OFString *const pluginPath = @"plugin/TestPlugin";
#else
static OFString *const pluginPath = @"PlugIns/TestPlugin";
#endif
static OFString *const module = @"OFPlugin";
@implementation TestsAppDelegate (OFPluginTests)
- (void)pluginTests
{
void *pool = objc_autoreleasePoolPush();
TestPlugin *plugin;
TEST(@"+[pluginWithPath:]",
(plugin = [OFPlugin pluginWithPath: pluginPath]))
TEST(@"TestPlugin's -[test:]", [plugin test: 1234] == 2468)
objc_autoreleasePoolPop(pool);
}
@end
|
|
|
>
>
>
|
>
>
|
|
>
>
>
>
>
|
>
>
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#include "config.h"
#import "TestsAppDelegate.h"
#import "plugin/TestPlugin.h"
#ifndef OF_IOS
static OFString *const pluginName = @"plugin/TestPlugin";
#else
static OFString *const pluginName = @"PlugIns/TestPlugin";
#endif
static OFString *const module = @"OFPlugin";
@implementation TestsAppDelegate (OFPluginTests)
- (void)pluginTests
{
void *pool = objc_autoreleasePoolPush();
OFString *path;
OFPlugin *plugin;
Class (*class)(void);
TestPlugin *test;
TEST(@"+[pathForName:]", (path = [OFPlugin pathForName: pluginName]))
TEST(@"+[pluginWithPath:]", (plugin = [OFPlugin pluginWithPath: path]))
TEST(@"-[addressForSymbol:]",
(class = (Class (*)(void))(uintptr_t)
[plugin addressForSymbol: @"class"]))
test = [[class() alloc] init];
@try {
TEST(@"TestPlugin's -[test:]", [test test: 1234] == 2468)
} @finally {
[test release];
}
objc_autoreleasePoolPop(pool);
}
@end
|