mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-14 11:47:15 +01:00
40 lines
605 B
C
40 lines
605 B
C
|
//
|
||
|
// ConditionTest.h
|
||
|
//
|
||
|
// Definition of the ConditionTest class.
|
||
|
//
|
||
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef ConditionTest_INCLUDED
|
||
|
#define ConditionTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class ConditionTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
ConditionTest(const std::string& name);
|
||
|
~ConditionTest();
|
||
|
|
||
|
void testSignal();
|
||
|
void testBroadcast();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // ConditionTest_INCLUDED
|