1 | // |
---|---|
2 | // HTTPTestSuite.cpp |
3 | // |
4 | // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. |
5 | // and Contributors. |
6 | // |
7 | // SPDX-License-Identifier: BSL-1.0 |
8 | // |
9 | |
10 | |
11 | #include "HTTPTestSuite.h" |
12 | #include "HTTPRequestTest.h" |
13 | #include "HTTPResponseTest.h" |
14 | #include "HTTPCookieTest.h" |
15 | #include "HTTPCredentialsTest.h" |
16 | |
17 | |
18 | CppUnit::Test* HTTPTestSuite::suite() |
19 | { |
20 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("HTTPTestSuite"); |
21 | |
22 | pSuite->addTest(HTTPRequestTest::suite()); |
23 | pSuite->addTest(HTTPResponseTest::suite()); |
24 | pSuite->addTest(HTTPCookieTest::suite()); |
25 | pSuite->addTest(HTTPCredentialsTest::suite()); |
26 | |
27 | return pSuite; |
28 | } |
29 |