mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-19 03:07:12 +01:00
28 lines
408 B
C
28 lines
408 B
C
|
//
|
||
|
// CacheTestSuite.h
|
||
|
//
|
||
|
// 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 "CppUnit/TestSuite.h"
|
||
|
|
||
|
|
||
|
class CacheTestSuite
|
||
|
{
|
||
|
public:
|
||
|
static CppUnit::Test* suite();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // CacheTestSuite_INCLUDED
|