Differences From Artifact [296b9e3000]:
- File tests/TestsAppDelegate.m — part of check-in [7e5c81e186] at 2018-01-03 19:49:46 on branch trunk — Update copyright notice (user: js, size: 10777) [annotate] [blame] [check-ins using]
To Artifact [67fb65151c]:
- File
tests/TestsAppDelegate.m
— part of check-in
[c7a9c43acd]
at
2018-01-20 16:26:21
on branch trunk
— Add Xcode project for tests on iOS
This currently does not test plugins. (user: js, size: 10828) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
19 20 21 22 23 24 25 | #include <stdlib.h> #import "ObjFW.h" #import "TestsAppDelegate.h" | | > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
#include <stdlib.h>
#import "ObjFW.h"
#import "TestsAppDelegate.h"
#if defined(STDOUT) && (defined(OF_WINDOWS) || defined(OF_MSDOS)) || \
defined(OF_IOS)
# undef STDOUT
# define STDOUT_SIMPLE
#endif
#ifdef OF_IOS
# include <CoreFoundation/CoreFoundation.h>
#endif
|
| ︙ | ︙ | |||
431 432 433 434 435 436 437 | [self XMLParserTests]; [self XMLNodeTests]; [self XMLElementBuilderTests]; #ifdef OF_HAVE_FILES [self serializationTests]; #endif [self JSONTests]; | | | 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 | [self XMLParserTests]; [self XMLNodeTests]; [self XMLElementBuilderTests]; #ifdef OF_HAVE_FILES [self serializationTests]; #endif [self JSONTests]; #if defined(OF_HAVE_PLUGINS) && !defined(OF_IOS) [self pluginTests]; #endif #if defined(OF_IOS) [self outputString: [OFString stringWithFormat: @"%d tests failed!", _fails] inColor: NO_COLOR]; |
| ︙ | ︙ |