1//
2// RandomTest.h
3//
4// Definition of the RandomTest class.
5//
6// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef RandomTest_INCLUDED
14#define RandomTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class RandomTest: public CppUnit::TestCase
22{
23public:
24 RandomTest(const std::string& name);
25 ~RandomTest();
26
27 void testSequence1();
28 void testSequence2();
29 void testDistribution1();
30 void testDistribution2();
31 void testDistribution3();
32
33 void setUp();
34 void tearDown();
35
36 static CppUnit::Test* suite();
37
38private:
39};
40
41
42#endif // RandomTest_INCLUDED
43