mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
32 lines
790 B
C++
32 lines
790 B
C++
//
|
|
// CacheTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/CacheTestSuite.cpp#1 $
|
|
//
|
|
// 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;
|
|
}
|