mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-27 03:43:25 +01:00
ce797f7700
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
30 lines
481 B
C++
30 lines
481 B
C++
//
|
|
// CacheTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/CacheTestSuite.h#1 $
|
|
//
|
|
// Definition of the CacheTestSuite class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef CacheTestSuite_INCLUDED
|
|
#define CacheTestSuite_INCLUDED
|
|
|
|
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
|
|
|
|
class CacheTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // CacheTestSuite_INCLUDED
|