X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Frand%2FGaloisLFSRTest.hpp;fp=tst%2Frand%2FGaloisLFSRTest.hpp;h=0000000000000000000000000000000000000000;hb=8f6530c75730f901efd6708e4fde7e68a178adf1;hp=512bb9926ec36c6cf6d6bc43fda89cec8c6191c3;hpb=c51b3bbef5c9b8ab52f55d46f08c5992fe574f70;p=blobs.git diff --git a/tst/rand/GaloisLFSRTest.hpp b/tst/rand/GaloisLFSRTest.hpp deleted file mode 100644 index 512bb99..0000000 --- a/tst/rand/GaloisLFSRTest.hpp +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef BLOBS_TEST_RAND_GALOISLFSRTEST_HPP -#define BLOBS_TEST_RAND_GALOISLFSRTEST_HPP - -#include - -#include -#include - - -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 &container, - int element); - -}; - -} -} -} - -#endif