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