mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-26 18:42:41 +01:00
POCO Redis experiment ...
This commit is contained in:
24
Redis/testsuite/src/RedisTestSuite.cpp
Normal file
24
Redis/testsuite/src/RedisTestSuite.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// RedisTestSuite.cpp
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||||
// and Contributors.
|
||||
//
|
||||
// SPDX-License-Identifier: BSL-1.0
|
||||
//
|
||||
|
||||
|
||||
#include "RedisTestSuite.h"
|
||||
#include "RedisTest.h"
|
||||
|
||||
|
||||
CppUnit::Test* RedisTestSuite::suite()
|
||||
{
|
||||
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("RedisTestSuite");
|
||||
|
||||
pSuite->addTest(RedisTest::suite());
|
||||
|
||||
return pSuite;
|
||||
}
|
||||
Reference in New Issue
Block a user