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