-
Jan Trávníček authoredJan Trávníček authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
RandomTest.h 332 B
#ifndef RANDOM_TEST_H_
#define RANDOM_TEST_H_
#include <cppunit/extensions/HelperMacros.h>
class RandomTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( RandomTest );
CPPUNIT_TEST( testRandom );
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void testRandom();
};
#endif // RANDOM_TEST_H_