summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/smpppdcs/unittest/main.cpp
blob: 5eda8cb2c93309db7bbbcffdcccf698b95f44664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
	main.cpp
 
	Copyright (c) 2006      by Heiko Schaefer        <heiko@rangun.de>
 
	Kopete    (c) 2002-2006 by the Kopete developers <kopete-devel@kde.org>
 
	*************************************************************************
	*                                                                       *
	* This program is free software; you can redistribute it and/or modify  *
	* it under the terms of the GNU General Public License as published by  *
	* the Free Software Foundation; version 2 of the License.               *
	*                                                                       *
	*************************************************************************
*/

#include <kaboutdata.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include <tdeunittest/runnergui.h>

#include "clienttest.h"

static const char description[] = I18N_NOOP("SMPPPDClientTests");
static const char version[] = "0.1";
static KCmdLineOptions options[] = { KCmdLineLastOption };

int main( int argc, char** argv ) {
    TDEAboutData about("SMPPPDClientTests", I18N_NOOP("SMPPPDClientTests"), version, description,
                     TDEAboutData::License_BSD, "(C) 2006 Heiko Schäfer", 0, 0, "heiko@rangun.de");

    TDECmdLineArgs::init(argc, argv, &about);
    TDECmdLineArgs::addCmdLineOptions(options);
    TDEApplication app;

    KUnitTest::Runner::registerTester("ClientTest", new ClientTest);

    KUnitTest::RunnerGUI runner(0);
    runner.show();
    app.setMainWidget(&runner);

    return app.exec();
}