1//
2// UUIDGeneratorTest.h
3//
4// Definition of the UUIDGeneratorTest 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 UUIDGeneratorTest_INCLUDED
14#define UUIDGeneratorTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class UUIDGeneratorTest: public CppUnit::TestCase
22{
23public:
24 UUIDGeneratorTest(const std::string& name);
25 ~UUIDGeneratorTest();
26
27 void testTimeBased();
28 void testRandom();
29 void testNameBased();
30
31 void setUp();
32 void tearDown();
33
34 static CppUnit::Test* suite();
35
36private:
37};
38
39
40#endif // UUIDGeneratorTest_INCLUDED
41