mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-09 01:07:16 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
//
|
|
// DOMTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "DOMTestSuite.h"
|
|
#include "NodeTest.h"
|
|
#include "ChildNodesTest.h"
|
|
#include "ElementTest.h"
|
|
#include "TextTest.h"
|
|
#include "DocumentTest.h"
|
|
#include "DocumentTypeTest.h"
|
|
#include "EventTest.h"
|
|
#include "NodeIteratorTest.h"
|
|
#include "TreeWalkerTest.h"
|
|
#include "ParserWriterTest.h"
|
|
#include "NodeAppenderTest.h"
|
|
|
|
|
|
CppUnit::Test* DOMTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("DOMTestSuite");
|
|
|
|
pSuite->addTest(NodeTest::suite());
|
|
pSuite->addTest(ChildNodesTest::suite());
|
|
pSuite->addTest(ElementTest::suite());
|
|
pSuite->addTest(TextTest::suite());
|
|
pSuite->addTest(DocumentTest::suite());
|
|
pSuite->addTest(DocumentTypeTest::suite());
|
|
pSuite->addTest(EventTest::suite());
|
|
pSuite->addTest(NodeIteratorTest::suite());
|
|
pSuite->addTest(TreeWalkerTest::suite());
|
|
pSuite->addTest(ParserWriterTest::suite());
|
|
pSuite->addTest(NodeAppenderTest::suite());
|
|
|
|
return pSuite;
|
|
}
|