mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 18:07:14 +01:00
30 lines
720 B
C++
30 lines
720 B
C++
|
//
|
||
|
// CacheTestSuite.cpp
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "CacheTestSuite.h"
|
||
|
#include "LRUCacheTest.h"
|
||
|
#include "ExpireCacheTest.h"
|
||
|
#include "ExpireLRUCacheTest.h"
|
||
|
#include "UniqueExpireCacheTest.h"
|
||
|
#include "UniqueExpireLRUCacheTest.h"
|
||
|
|
||
|
CppUnit::Test* CacheTestSuite::suite()
|
||
|
{
|
||
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("CacheTestSuite");
|
||
|
|
||
|
pSuite->addTest(LRUCacheTest::suite());
|
||
|
pSuite->addTest(ExpireCacheTest::suite());
|
||
|
pSuite->addTest(UniqueExpireCacheTest::suite());
|
||
|
pSuite->addTest(ExpireLRUCacheTest::suite());
|
||
|
pSuite->addTest(UniqueExpireLRUCacheTest::suite());
|
||
|
|
||
|
return pSuite;
|
||
|
}
|