Index: tests/OFList/OFList.m ================================================================== --- tests/OFList/OFList.m +++ tests/OFList/OFList.m @@ -9,10 +9,12 @@ * the packaging of this file. */ #import #import + +#import #import "OFString.h" #import "OFList.h" /* TODO: Do real checks */ Index: tests/OFXMLFactory/OFXMLFactory.m ================================================================== --- tests/OFXMLFactory/OFXMLFactory.m +++ tests/OFXMLFactory/OFXMLFactory.m @@ -11,12 +11,10 @@ #import #import #import -#import - #import "OFXMLFactory.h" /* TODO: Do not only print, but check if it's the output it should be */ inline int @@ -131,11 +129,7 @@ return 0; } int main() { - assert(test_escape() == 0); - assert(test_create_stanza() == 0); - assert(test_concat() == 0); - - return 0; + return test_escape() + test_create_stanza() + test_concat(); }