1 | // |
---|---|
2 | // MailTestSuite.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 "MailTestSuite.h" |
12 | #include "MailMessageTest.h" |
13 | #include "MailStreamTest.h" |
14 | #include "SMTPClientSessionTest.h" |
15 | #include "POP3ClientSessionTest.h" |
16 | |
17 | |
18 | CppUnit::Test* MailTestSuite::suite() |
19 | { |
20 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("MailTestSuite"); |
21 | |
22 | pSuite->addTest(MailMessageTest::suite()); |
23 | pSuite->addTest(MailStreamTest::suite()); |
24 | pSuite->addTest(SMTPClientSessionTest::suite()); |
25 | pSuite->addTest(POP3ClientSessionTest::suite()); |
26 | |
27 | return pSuite; |
28 | } |
29 |