#include #include #include #include #include #include bool check(TQString txt, bool res, bool expected) { if (res == expected) { kdDebug() << txt << " : checking '" << res << "' against expected value '" << expected << "'... " << "ok" << endl; } else { kdDebug() << txt << " : checking '" << res << "' against expected value '" << expected << "'... " << "KO !" << endl; exit(1); } return true; } bool check(TQString txt, TQString a, TQString b) { if (a.isEmpty()) a = TQString(); if (b.isEmpty()) b = TQString(); if (a == b) { kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "ok" << endl; } else { kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "KO !" << endl; exit(1); } return true; } int main(int argc, char *argv[]) { TDEApplication app(argc,argv,"korecttest",false,false); KoRect emptyRect; check( "KoRect() is null", emptyRect.isNull(), true ); check( "KoRect() is empty", emptyRect.isEmpty(), true ); KoRect rect( 1, 15, 250, 156.14 ); check( "KoRect(...) is not null", rect.isNull(), false ); check( "KoRect(...) is not empty", rect.isEmpty(), false ); KoRect unionRect = rect | emptyRect; check( "Union is not null", unionRect.isNull(), false ); check( "Union is not empty", unionRect.isEmpty(), false ); kdDebug() << unionRect << endl; printf("\nTest OK !\n"); }