]> ruin.nu Git - germs.git/blobdiff - src/test/geneordertest.cpp
some more changes
[germs.git] / src / test / geneordertest.cpp
diff --git a/src/test/geneordertest.cpp b/src/test/geneordertest.cpp
new file mode 100644 (file)
index 0000000..cc29694
--- /dev/null
@@ -0,0 +1,39 @@
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+#include <geneorder.h>
+
+/* 
+ * A test case that is designed to produce
+ * example errors and failures.
+ *
+ */
+
+#define TESTNAME GeneOrderTest
+
+
+class TESTNAME : public CPPUNIT_NS::TestFixture
+{
+  CPPUNIT_TEST_SUITE( TESTNAME );
+  CPPUNIT_TEST( testCreate );
+  CPPUNIT_TEST_SUITE_END();
+
+protected:
+
+       double m_value1;
+       double m_value2;
+public:
+
+       void setUp (){
+       }
+
+protected:
+
+       void testCreate (){
+          CPPUNIT_ASSERT (1 == 0);
+       }
+};
+
+CPPUNIT_TEST_SUITE_REGISTRATION( TESTNAME );
+
+#undef TESTNAME