poco/Foundation/testsuite/src/ListMapTest.h
Roger Meier 628a06f718 LICENSE: add info about SPDX-License-Identifier usage and use it
Signed-off-by: Roger Meier <roger@bufferoverflow.ch>
2014-05-04 21:02:42 +02:00

46 lines
746 B
C++
Executable File

//
// ListMapTest.h
//
// $Id: //poco/1.4/Foundation/testsuite/src/ListMapTest.h#1 $
//
// Definition of the ListMapTest class.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef ListMapTest_INCLUDED
#define ListMapTest_INCLUDED
#include "Poco/Foundation.h"
#include "CppUnit/TestCase.h"
class ListMapTest: public CppUnit::TestCase
{
public:
ListMapTest(const std::string& name);
~ListMapTest();
void testInsert();
void testErase();
void testIterator();
void testConstIterator();
void testIntIndex();
void testStringIndex();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // ListMapTest_INCLUDED