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