diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kdecore/tests/kglobaltest.cpp | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/tests/kglobaltest.cpp')
-rw-r--r-- | kdecore/tests/kglobaltest.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/kdecore/tests/kglobaltest.cpp b/kdecore/tests/kglobaltest.cpp new file mode 100644 index 000000000..90332e3e6 --- /dev/null +++ b/kdecore/tests/kglobaltest.cpp @@ -0,0 +1,64 @@ +#include <config.h> + +#include <kglobal.h> +#include <stdio.h> +#include <kapplication.h> +#include <stdlib.h> +#include <kdebug.h> +#include <assert.h> +#include <kcmdlineargs.h> + +static bool check(const QString& txt, QString a, QString b) +{ + if (a.isEmpty()) + a = QString::null; + if (b.isEmpty()) + b = QString::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"); +} + |