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