From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdecore/tests/kglobaltest.cpp | 64 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 tdecore/tests/kglobaltest.cpp (limited to 'tdecore/tests/kglobaltest.cpp') diff --git a/tdecore/tests/kglobaltest.cpp b/tdecore/tests/kglobaltest.cpp new file mode 100644 index 000000000..d03be209e --- /dev/null +++ b/tdecore/tests/kglobaltest.cpp @@ -0,0 +1,64 @@ +#include + +#include +#include +#include +#include +#include +#include +#include + +static bool check(const TQString& txt, TQString a, TQString b) +{ + if (a.isEmpty()) + a = TQString::null; + if (b.isEmpty()) + b = TQString::null; + 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; +} + +void testkasciistricmp() +{ + assert( kasciistricmp( "test", "test" ) == 0 ); + assert( kasciistricmp( "test", "Test" ) == 0 ); + assert( kasciistricmp( "TeSt", "tEst" ) == 0 ); + + assert( kasciistricmp( 0, 0 ) == 0 ); + assert( kasciistricmp( "", "" ) == 0 ); + assert( kasciistricmp( 0, "" ) < 0 ); + assert( kasciistricmp( "", 0 ) > 0 ); + + assert( kasciistricmp( "", "foo" ) < 0 ); + assert( kasciistricmp( "foo", "" ) > 0 ); + + assert( kasciistricmp( "test", "testtest" ) < 0 ); + assert( kasciistricmp( "testtest", "test" ) > 0 ); + + assert( kasciistricmp( "a", "b" ) < 0 ); + assert( kasciistricmp( "b", "a" ) > 0 ); + assert( kasciistricmp( "A", "b" ) < 0 ); + assert( kasciistricmp( "b", "A" ) > 0 ); + assert( kasciistricmp( "a", "B" ) < 0 ); + assert( kasciistricmp( "B", "a" ) > 0 ); + assert( kasciistricmp( "A", "B" ) < 0 ); + assert( kasciistricmp( "B", "A" ) > 0 ); +} + +int main(int argc, char *argv[]) +{ + KApplication::disableAutoDcopRegistration(); + KCmdLineArgs::init( argc, argv, "kglobaltest", 0, 0, 0, 0 ); + KApplication app( false, false ); + + testkasciistricmp(); + + printf("\nTest OK !\n"); +} + -- cgit v1.2.1