mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-17 03:06:19 +02:00
27 lines
554 B
C++
27 lines
554 B
C++
//
|
|
// SAXTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "SAXTestSuite.h"
|
|
#include "AttributesImplTest.h"
|
|
#include "NamespaceSupportTest.h"
|
|
#include "SAXParserTest.h"
|
|
|
|
|
|
CppUnit::Test* SAXTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("SAXTestSuite");
|
|
|
|
pSuite->addTest(AttributesImplTest::suite());
|
|
pSuite->addTest(NamespaceSupportTest::suite());
|
|
pSuite->addTest(SAXParserTest::suite());
|
|
|
|
return pSuite;
|
|
}
|