diff options
author | Vincent Richard <[email protected]> | 2005-08-25 21:25:45 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-08-25 21:25:45 +0000 |
commit | 5d18fce959ea74f99a8683c944c96881b2365bb2 (patch) | |
tree | d35b9177115606eedd84bbc64eb11aa21ca72878 /tests/lib/unit++/Test_gui.cc | |
parent | Fixed undefined symbol 'UNSPECIFIED_PORT'. (diff) | |
download | vmime-5d18fce959ea74f99a8683c944c96881b2365bb2.tar.gz vmime-5d18fce959ea74f99a8683c944c96881b2365bb2.zip |
Moved to CppUnit for unit tests framework.
Diffstat (limited to 'tests/lib/unit++/Test_gui.cc')
-rw-r--r-- | tests/lib/unit++/Test_gui.cc | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/lib/unit++/Test_gui.cc b/tests/lib/unit++/Test_gui.cc deleted file mode 100644 index 4f9e47c2..00000000 --- a/tests/lib/unit++/Test_gui.cc +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (C) 2001 Claus Dr�by -// Terms of use are in the file COPYING -#ifdef GUI -#include "gui.h" -#include "unit++.h" -using namespace std; -using namespace unitpp; - -gui_hook ghook; // ensure linkage of the gui stuff - -namespace { -// The test suite for the gui components -class Test : public suite -{ - void dummy() - { - } -public: - Test() : suite("GUI test suite") - { - suite::main().add("gui", this); - add("dummy", testcase(this, "Test nothing", &Test::dummy)); - } -} * theTest = new Test(); - -} -#endif |