]> ruin.nu Git - germs.git/blobdiff - test/geneordertest.cpp
More help output
[germs.git] / test / geneordertest.cpp
diff --git a/test/geneordertest.cpp b/test/geneordertest.cpp
deleted file mode 100644 (file)
index cc29694..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#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