Lumiera  0.pre.03
»edit your freedom«
hello-bug-test.cpp
Go to the documentation of this file.
1 /*
2  HelloBug(Test) - placeholder for running bug regression tests
3 
4  Copyright (C)
5  2008, Christian Thaeter <ct@pipapo.org>
6 
7   **Lumiera** is free software; you can redistribute it and/or modify it
8   under the terms of the GNU General Public License as published by the
9   Free Software Foundation; either version 2 of the License, or (at your
10   option) any later version. See the file COPYING for further details.
11 
12 * *****************************************************************/
13 
19 #include "lib/test/run.hpp"
20 
21 #include <iostream>
22 
23 using std::cerr;
24 using std::endl;
25 
26 
27 namespace lumiera{
28 namespace test {
29 
30 
31  /**************************************/
36  : public Test
37  {
38  virtual void
39  run (Arg)
40  {
41  cerr << "hello sunshine, no bugs whatsoever" <<endl;
42  }
43  };
44 
45 
46 
47 
48 
50  LAUNCHER (HelloBug_test, "function regression");
51 
52 
53 
54 }} // namespace lumiera::test
Definition: run.hpp:40
Simplistic test class runner.
Lumiera public interface.
Definition: advice.cpp:104