13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
* file.
*/
#include "config.h"
#import "TestsAppDelegate.h"
static OFString *module = @"OFINIFile";
@implementation TestsAppDelegate (OFINIFileTests)
- (void)INIFileTests
{
void *pool = objc_autoreleasePoolPush();
OFString *output = @"[tests]\r\n"
@"foo=baz\r\n"
|
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
* file.
*/
#include "config.h"
#import "TestsAppDelegate.h"
static OFString *module;
@implementation TestsAppDelegate (OFINIFileTests)
- (void)INIFileTests
{
void *pool = objc_autoreleasePoolPush();
OFString *output = @"[tests]\r\n"
@"foo=baz\r\n"
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
@"double=0.75\r\n";
OFINIFile *file;
OFINICategory *tests, *foobar, *types;
OFArray *array;
#ifndef OF_NINTENDO_DS
OFString *writePath;
#endif
TEST(@"+[fileWithPath:encoding:]",
(file = [OFINIFile fileWithPath: @"testfile.ini"
encoding: OFStringEncodingCodepage437]))
tests = [file categoryForName: @"tests"];
foobar = [file categoryForName: @"foobar"];
|
>
>
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
@"double=0.75\r\n";
OFINIFile *file;
OFINICategory *tests, *foobar, *types;
OFArray *array;
#ifndef OF_NINTENDO_DS
OFString *writePath;
#endif
module = @"OFINIFile";
TEST(@"+[fileWithPath:encoding:]",
(file = [OFINIFile fileWithPath: @"testfile.ini"
encoding: OFStringEncodingCodepage437]))
tests = [file categoryForName: @"tests"];
foobar = [file categoryForName: @"foobar"];
|