mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-12 18:57:16 +01:00
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;
|
||
|
}
|