mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-03-05 03:37:28 +01:00
28 lines
408 B
C
28 lines
408 B
C
|
//
|
||
|
// RedisTestSuite.h
|
||
|
//
|
||
|
// Definition of the RedisTestSuite class.
|
||
|
//
|
||
|
// Copyright (c) 2015, 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
|