poco/XML/testsuite/src/NamePoolTest.cpp
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.3 KiB
C++

//
// NamePoolTest.cpp
//
// $Id: //poco/1.4/XML/testsuite/src/NamePoolTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "NamePoolTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/XML/NamePool.h"
#include "Poco/XML/Name.h"
#include "Poco/DOM/AutoPtr.h"
using Poco::XML::NamePool;
using Poco::XML::Name;
using Poco::XML::AutoPtr;
NamePoolTest::NamePoolTest(const std::string& name): CppUnit::TestCase(name)
{
}
NamePoolTest::~NamePoolTest()
{
}
void NamePoolTest::testNamePool()
{
AutoPtr<NamePool> pool = new NamePool;
const Name* pName = 0;
Name name("pre:local", "http://www.appinf.com");
pName = &pool->insert(name);
const Name* pName2 = &pool->insert("pre:local", "http://www.appinf.com", "local");
assert (pName == pName2);
pName2 = &pool->insert("pre:local2", "http://www.appinf.com", "local2");
assert (pName2 != pName);
pName2 = &pool->insert(name);
assert (pName2 == pName);
pName2 = &pool->insert(*pName);
assert (pName2 == pName);
}
void NamePoolTest::setUp()
{
}
void NamePoolTest::tearDown()
{
}
CppUnit::Test* NamePoolTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("NamePoolTest");
CppUnit_addTest(pSuite, NamePoolTest, testNamePool);
return pSuite;
}