mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
30 lines
424 B
C++
30 lines
424 B
C++
//
|
|
// RedisTestSuite.h
|
|
//
|
|
// $Id$
|
|
//
|
|
// Definition of the RedisTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef RedisTestSuite_INCLUDED
|
|
#define RedisTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class RedisTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // RedisTestSuite_INCLUDED
|