mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
28 lines
407 B
C++
28 lines
407 B
C++
//
|
|
// UUIDTestSuite.h
|
|
//
|
|
// Definition of the UUIDTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef UUIDTestSuite_INCLUDED
|
|
#define UUIDTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class UUIDTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // UUIDTestSuite_INCLUDED
|