You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/lib/kofficecore/tests/korecttest.cpp

54 lines
1.5 KiB

#include <KoRect.h>
#include <stdio.h>
#include <tdeapplication.h>
#include <stdlib.h>
#include <kdebug.h>
#include <kglobal.h>
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");
}