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