blob: 4f9e47c2752cbfd9defac5fd29e2aafec7190a5c (
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
|
// 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
|