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