43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
@"array1=foo\r\n"
@"array1=bar\r\n"
@"double=0.75\r\n";
OFURL *URL;
OFINIFile *file;
OFINICategory *tests, *foobar, *types;
OFArray *array;
#ifndef OF_NINTENDO_DS
OFURL *writeURL;
#endif
module = @"OFINIFile";
URL = [OFURL URLWithString: @"objfw-embedded:///testfile.ini"];
TEST(@"+[fileWithURL:encoding:]",
|
|
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
@"array1=foo\r\n"
@"array1=bar\r\n"
@"double=0.75\r\n";
OFURL *URL;
OFINIFile *file;
OFINICategory *tests, *foobar, *types;
OFArray *array;
#if defined(OF_HAVE_FILES) && !defined(OF_NINTENDO_DS)
OFURL *writeURL;
#endif
module = @"OFINIFile";
URL = [OFURL URLWithString: @"objfw-embedded:///testfile.ini"];
TEST(@"+[fileWithURL:encoding:]",
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
TEST(@"-[removeValueForKey:]",
R([foobar removeValueForKey: @"quxqux "]) &&
R([types removeValueForKey: @"array2"]))
module = @"OFINIFile";
/* FIXME: Find a way to write files on Nintendo DS */
#ifndef OF_NINTENDO_DS
writeURL = [[OFSystemInfo temporaryDirectoryURL]
URLByAppendingPathComponent: @"objfw-tests.ini"
isDirectory: false];
TEST(@"-[writeToFile:encoding:]",
R([file writeToURL: writeURL
encoding: OFStringEncodingCodepage437]) &&
[[OFString stringWithContentsOfURL: writeURL
|
|
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
TEST(@"-[removeValueForKey:]",
R([foobar removeValueForKey: @"quxqux "]) &&
R([types removeValueForKey: @"array2"]))
module = @"OFINIFile";
/* FIXME: Find a way to write files on Nintendo DS */
#if defined(OF_HAVE_FILES) && !defined(OF_NINTENDO_DS)
writeURL = [[OFSystemInfo temporaryDirectoryURL]
URLByAppendingPathComponent: @"objfw-tests.ini"
isDirectory: false];
TEST(@"-[writeToFile:encoding:]",
R([file writeToURL: writeURL
encoding: OFStringEncodingCodepage437]) &&
[[OFString stringWithContentsOfURL: writeURL
|