]> git.localhorst.tv Git - blobs.git/blobdiff - tst/rand/GaloisLFSRTest.hpp
randomize creature properties a bit
[blobs.git] / tst / rand / GaloisLFSRTest.hpp
diff --git a/tst/rand/GaloisLFSRTest.hpp b/tst/rand/GaloisLFSRTest.hpp
deleted file mode 100644 (file)
index 512bb99..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#ifndef BLOBS_TEST_RAND_GALOISLFSRTEST_HPP
-#define BLOBS_TEST_RAND_GALOISLFSRTEST_HPP
-
-#include <cppunit/extensions/HelperMacros.h>
-
-#include <string>
-#include <vector>
-
-
-namespace blobs {
-namespace rand {
-namespace test {
-
-class GaloisLFSRTest
-: public CppUnit::TestFixture {
-
-CPPUNIT_TEST_SUITE(GaloisLFSRTest);
-
-CPPUNIT_TEST(testFloatNorm);
-CPPUNIT_TEST(testFromContainer);
-
-CPPUNIT_TEST_SUITE_END();
-
-public:
-       void setUp();
-       void tearDown();
-
-       void testFloatNorm();
-       void testFromContainer();
-
-       /// check if value is in range [minimum,maximum]
-       static void AssertBetween(
-               std::string message,
-               float minimum,
-               float maximum,
-               float actual);
-
-       static void AssertContains(
-               std::string message,
-               const std::vector<int> &container,
-               int element);
-
-};
-
-}
-}
-}
-
-#endif