1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-15 17:27:12 +01:00
SqMod/vendor/POCO/Net/testsuite/src/HTTPResponseTest.h

47 lines
772 B
C
Raw Normal View History

//
// HTTPResponseTest.h
//
// Definition of the HTTPResponseTest class.
//
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef HTTPResponseTest_INCLUDED
#define HTTPResponseTest_INCLUDED
#include "Poco/Net/Net.h"
#include "CppUnit/TestCase.h"
class HTTPResponseTest: public CppUnit::TestCase
{
public:
HTTPResponseTest(const std::string& name);
~HTTPResponseTest();
void testWrite1();
void testWrite2();
void testRead1();
void testRead2();
void testRead3();
void testInvalid1();
void testInvalid2();
void testInvalid3();
void testCookies();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // HTTPResponseTest_INCLUDED