X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Frand%2FStabilityTest.hpp;fp=tst%2Frand%2FStabilityTest.hpp;h=0000000000000000000000000000000000000000;hb=8f6530c75730f901efd6708e4fde7e68a178adf1;hp=8f3811420cb11f103308686048b43bf0ce9c2f75;hpb=c51b3bbef5c9b8ab52f55d46f08c5992fe574f70;p=blobs.git diff --git a/tst/rand/StabilityTest.hpp b/tst/rand/StabilityTest.hpp deleted file mode 100644 index 8f38114..0000000 --- a/tst/rand/StabilityTest.hpp +++ /dev/null @@ -1,53 +0,0 @@ -#ifndef BLOBS_TEST_RAND_STABILITYTEST_HPP -#define BLOBS_TEST_RAND_STABILITYTEST_HPP - -#include "graphics/glm.hpp" - -#include - - - -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