#ifndef XMLWRITERTEST_H #define XMLWRITERTEST_H #define TQT_NO_CAST_ASCII // Those macros are in a separate header file in order to share them // with kofficecore/tests/kogenstylestest.cpp #include #include #define TEST_BEGIN(publicId,systemId) \ { \ TQCString cstr; \ TQBuffer buffer( cstr ); \ buffer.open( IO_WriteOnly ); \ { \ KoXmlWriter writer( &buffer ); \ writer.startDocument( "r", publicId, systemId ); \ writer.startElement( "r" ) #define TEST_END(testname, expected) \ writer.endElement(); \ writer.endDocument(); \ } \ buffer.putch( '\0' ); /*null-terminate*/ \ TQCString expectedFull( "\n" ); \ expectedFull += expected; \ if ( cstr == expectedFull ) \ tqDebug( "%s OK", testname ); \ else { \ tqDebug( "%s FAILED!", testname ); \ TQCString s1 = cstr; \ TQCString s2 = expectedFull; \ if ( s1.length() != s2.length() ) \ tqDebug( "got length %d, expected %d", s1.length(), s2.length() ); \ s1.replace( TQRegExp( TQString::fromLatin1( "[x]{1000}" ) ), "[x]*1000" ); \ s2.replace( TQRegExp( TQString::fromLatin1( "[x]{1000}" ) ), "[x]*1000" ); \ tqDebug( "%s", s1.data() ); \ tqDebug( "Expected:\n%s", s2.data() ); \ return 1; /*exit*/ \ } \ } #endif