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