mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 01:07:12 +01:00
43 lines
671 B
C
43 lines
671 B
C
|
//
|
||
|
// RandomTest.h
|
||
|
//
|
||
|
// Definition of the RandomTest class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef RandomTest_INCLUDED
|
||
|
#define RandomTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class RandomTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
RandomTest(const std::string& name);
|
||
|
~RandomTest();
|
||
|
|
||
|
void testSequence1();
|
||
|
void testSequence2();
|
||
|
void testDistribution1();
|
||
|
void testDistribution2();
|
||
|
void testDistribution3();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // RandomTest_INCLUDED
|