1//
2// ActiveMethodTest.h
3//
4// Definition of the ActiveMethodTest class.
5//
6// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef ActiveMethodTest_INCLUDED
14#define ActiveMethodTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class ActiveMethodTest: public CppUnit::TestCase
22{
23public:
24 ActiveMethodTest(const std::string& name);
25 ~ActiveMethodTest();
26
27 void testWait();
28 void testCopy();
29 void testWaitInterval();
30 void testTryWait();
31 void testFailure();
32 void testVoidOut();
33 void testVoidInOut();
34 void testVoidIn();
35
36 void setUp();
37 void tearDown();
38
39 static CppUnit::Test* suite();
40
41private:
42};
43
44
45#endif // ActiveMethodTest_INCLUDED
46