poco/XML/testsuite/src/XMLWriterTest.h
Roger Meier b0581433a7 LICENSE: add info about SPDX-License-Identifier usage and use it
fix: remove executable flag and change back to 100644 (was 100755)

Signed-off-by: Roger Meier <r.meier@siemens.com>
2014-05-14 08:38:09 +02:00

75 lines
1.5 KiB
C++

//
// XMLWriterTest.h
//
// $Id: //poco/1.4/XML/testsuite/src/XMLWriterTest.h#2 $
//
// Definition of the XMLWriterTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef XMLWriterTest_INCLUDED
#define XMLWriterTest_INCLUDED
#include "Poco/XML/XML.h"
#include "CppUnit/TestCase.h"
class XMLWriterTest: public CppUnit::TestCase
{
public:
XMLWriterTest(const std::string& name);
~XMLWriterTest();
void testTrivial();
void testTrivialCanonical();
void testTrivialDecl();
void testTrivialDeclPretty();
void testTrivialFragment();
void testTrivialFragmentPretty();
void testDTDPretty();
void testDTD();
void testDTDPublic();
void testDTDNotation();
void testDTDEntity();
void testAttributes();
void testAttributesPretty();
void testData();
void testEmptyData();
void testDataPretty();
void testEmptyDataPretty();
void testComment();
void testPI();
void testCharacters();
void testEmptyCharacters();
void testCDATA();
void testRawCharacters();
void testAttributeCharacters();
void testDefaultNamespace();
void testQNamespaces();
void testQNamespacesNested();
void testNamespaces();
void testNamespacesNested();
void testExplicitNamespaces();
void testWellformed();
void testWellformedNested();
void testWellformedNamespace();
void testAttributeNamespaces();
void testEmpty();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // XMLWriterTest_INCLUDED