summaryrefslogtreecommitdiffstats
path: root/kabc/tests/testdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/tests/testdb.cpp')
-rw-r--r--kabc/tests/testdb.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/kabc/tests/testdb.cpp b/kabc/tests/testdb.cpp
deleted file mode 100644
index fd4e4f6c1..000000000
--- a/kabc/tests/testdb.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <tdeaboutdata.h>
-#include <tdeapplication.h>
-#include <kdebug.h>
-#include <klocale.h>
-#include <tdecmdlineargs.h>
-
-#include "addressbook.h"
-#include "vcardformat.h"
-#include "resourcesql.h"
-
-using namespace KABC;
-
-int main(int argc,char **argv)
-{
- TDEAboutData aboutData("testdb","TestKabcDB","0.1");
- TDECmdLineArgs::init(argc,argv,&aboutData);
-
-// TDEApplication app( false, false );
- TDEApplication app;
-
- AddressBook ab;
-
- ResourceSql r( &ab, "root", "kde4ever", "localhost" );
- if ( ! r.open() ) {
- kdDebug() << "Failed to open resource." << endl;
- }
-
- r.load( &ab );
-
- r.close();
-
- ab.dump();
-}