mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-31 16:04:27 +02:00
43 lines
738 B
C++
43 lines
738 B
C++
//
|
|
// HTTPSStreamFactoryTest.h
|
|
//
|
|
// Definition of the HTTPSStreamFactoryTest class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef HTTPSStreamFactoryTest_INCLUDED
|
|
#define HTTPSStreamFactoryTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/Net.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class HTTPSStreamFactoryTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
HTTPSStreamFactoryTest(const std::string& name);
|
|
~HTTPSStreamFactoryTest();
|
|
|
|
void testNoRedirect();
|
|
void testEmptyPath();
|
|
void testRedirect();
|
|
void testProxy();
|
|
void testError();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // HTTPSStreamFactoryTest_INCLUDED
|