1//
2// ChannelTest.h
3//
4// Definition of the ChannelTest 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 ChannelTest_INCLUDED
14#define ChannelTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class ChannelTest: public CppUnit::TestCase
22{
23public:
24 ChannelTest(const std::string& name);
25 ~ChannelTest();
26
27 void testSplitter();
28 void testAsync();
29 void testFormatting();
30 void testConsole();
31 void testStream();
32
33 void setUp();
34 void tearDown();
35
36 static CppUnit::Test* suite();
37
38private:
39};
40
41
42#endif // ChannelTest_INCLUDED
43