19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "config.h"
#include <errno.h>
#import "ObjFW.h"
#import "ObjFWTest.h"
@interface OFFileManagerTests: OTTestCase
{
OFFileManager *_fileManager;
OFIRI *_testsDirectoryIRI, *_testFileIRI;
}
@end
|
>
>
>
>
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#include "config.h"
#include <errno.h>
#import "ObjFW.h"
#import "ObjFWTest.h"
#ifdef OF_HAIKU
# include <TypeConstants.h>
#endif
@interface OFFileManagerTests: OTTestCase
{
OFFileManager *_fileManager;
OFIRI *_testsDirectoryIRI, *_testFileIRI;
}
@end
|