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