1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-23 18:47:12 +02:00
Files
SqMod/vendor/POCO/Util/testsuite/src/XMLConfigurationTest.h
Sandu Liviu Catalin 233fc103f9 Update POCO library.
2023-03-23 20:19:11 +02:00

47 lines
908 B
C++

//
// XMLConfigurationTest.h
//
// Definition of the XMLConfigurationTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef XMLConfigurationTest_INCLUDED
#define XMLConfigurationTest_INCLUDED
#include "AbstractConfigurationTest.h"
#include "Poco/Util/Util.h"
class XMLConfigurationTest: public AbstractConfigurationTest
{
public:
XMLConfigurationTest(const std::string& name);
virtual ~XMLConfigurationTest();
void testLoad();
void testSave();
void testLoadAppendSave();
void testOtherDelimiter();
void testSaveEmpty();
void testFromScratch();
void testLoadEmpty();
void testManyKeys();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
virtual Poco::Util::AbstractConfiguration::Ptr allocConfiguration() const;
};
#endif // XMLConfigurationTest_INCLUDED