mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
28 lines
408 B
C
28 lines
408 B
C
|
//
|
||
|
// EventTestSuite.h
|
||
|
//
|
||
|
// Definition of the EventTestSuite class.
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef EventTestSuite_INCLUDED
|
||
|
#define EventTestSuite_INCLUDED
|
||
|
|
||
|
|
||
|
#include "CppUnit/TestSuite.h"
|
||
|
|
||
|
|
||
|
class EventTestSuite
|
||
|
{
|
||
|
public:
|
||
|
static CppUnit::Test* suite();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // EventTestSuite_INCLUDED
|