1 | // |
---|---|
2 | // MessagesTestSuite.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 "MessagesTestSuite.h" |
12 | #include "NameValueCollectionTest.h" |
13 | #include "MessageHeaderTest.h" |
14 | #include "MediaTypeTest.h" |
15 | #include "MultipartWriterTest.h" |
16 | #include "MultipartReaderTest.h" |
17 | #include "QuotedPrintableTest.h" |
18 | |
19 | |
20 | CppUnit::Test* MessagesTestSuite::suite() |
21 | { |
22 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("MessagesTestSuite"); |
23 | |
24 | pSuite->addTest(NameValueCollectionTest::suite()); |
25 | pSuite->addTest(MessageHeaderTest::suite()); |
26 | pSuite->addTest(MediaTypeTest::suite()); |
27 | pSuite->addTest(MultipartWriterTest::suite()); |
28 | pSuite->addTest(MultipartReaderTest::suite()); |
29 | pSuite->addTest(QuotedPrintableTest::suite()); |
30 | |
31 | return pSuite; |
32 | } |
33 |