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