| 1 | // |
|---|---|
| 2 | // XMLTestSuite.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 "XMLTestSuite.h" |
| 12 | #include "NameTest.h" |
| 13 | #include "NamePoolTest.h" |
| 14 | #include "XMLWriterTest.h" |
| 15 | #include "SAXTestSuite.h" |
| 16 | #include "DOMTestSuite.h" |
| 17 | #include "XMLStreamParserTest.h" |
| 18 | |
| 19 | CppUnit::Test* XMLTestSuite::suite() |
| 20 | { |
| 21 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("XMLTestSuite"); |
| 22 | |
| 23 | pSuite->addTest(NameTest::suite()); |
| 24 | pSuite->addTest(NamePoolTest::suite()); |
| 25 | pSuite->addTest(XMLWriterTest::suite()); |
| 26 | pSuite->addTest(SAXTestSuite::suite()); |
| 27 | pSuite->addTest(DOMTestSuite::suite()); |
| 28 | pSuite->addTest(XMLStreamParserTest::suite()); |
| 29 | |
| 30 | return pSuite; |
| 31 | } |
| 32 |