]> git.localhorst.tv Git - blobs.git/blobdiff - tst/rand/StabilityTest.hpp
randomize creature properties a bit
[blobs.git] / tst / rand / StabilityTest.hpp
diff --git a/tst/rand/StabilityTest.hpp b/tst/rand/StabilityTest.hpp
deleted file mode 100644 (file)
index 8f38114..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef BLOBS_TEST_RAND_STABILITYTEST_HPP
-#define BLOBS_TEST_RAND_STABILITYTEST_HPP
-
-#include "graphics/glm.hpp"
-
-#include <cppunit/extensions/HelperMacros.h>
-
-
-
-namespace blobs {
-namespace rand {
-
-class SimplexNoise;
-class WorleyNoise;
-
-namespace test {
-
-class StabilityTest
-: public CppUnit::TestFixture {
-
-CPPUNIT_TEST_SUITE(StabilityTest);
-
-CPPUNIT_TEST(testRNG);
-CPPUNIT_TEST(testSimplex);
-CPPUNIT_TEST(testWorley);
-
-CPPUNIT_TEST_SUITE_END();
-
-public:
-       void setUp();
-       void tearDown();
-
-       void testRNG();
-       void testSimplex();
-       void testWorley();
-
-       static void Assert(
-               const SimplexNoise &noise,
-               const glm::vec3 &position,
-               float expected);
-
-       static void Assert(
-               const WorleyNoise &noise,
-               const glm::vec3 &position,
-               float expected);
-
-};
-
-}
-}
-}
-
-#endif