]> ruin.nu Git - germs.git/blob - test/geneordertest.cpp
some initial tests
[germs.git] / test / geneordertest.cpp
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 #include <geneorder.h>
5
6 /* 
7  * A test case that is designed to produce
8  * example errors and failures.
9  *
10  */
11
12 #define TESTNAME GeneOrderTest
13
14
15 class TESTNAME : public CPPUNIT_NS::TestFixture
16 {
17   CPPUNIT_TEST_SUITE( TESTNAME );
18   CPPUNIT_TEST( testCreate );
19   CPPUNIT_TEST_SUITE_END();
20
21 protected:
22
23         double m_value1;
24         double m_value2;
25 public:
26
27         void setUp (){
28         }
29
30 protected:
31
32         void testCreate (){
33            CPPUNIT_ASSERT (1 == 0);
34         }
35 };
36
37 CPPUNIT_TEST_SUITE_REGISTRATION( TESTNAME );
38
39 #undef TESTNAME