summaryrefslogtreecommitdiffstats
path: root/kdecore/tests/kglobaltest.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /kdecore/tests/kglobaltest.cpp
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdecore/tests/kglobaltest.cpp')
-rw-r--r--kdecore/tests/kglobaltest.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/kdecore/tests/kglobaltest.cpp b/kdecore/tests/kglobaltest.cpp
deleted file mode 100644
index d03be209e..000000000
--- a/kdecore/tests/kglobaltest.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-#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 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");
-}
-