1//
2// ListMapTest.h
3//
4// Definition of the ListMapTest class.
5//
6// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef ListMapTest_INCLUDED
14#define ListMapTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class ListMapTest: public CppUnit::TestCase
22{
23public:
24 ListMapTest(const std::string& name);
25 ~ListMapTest();
26
27 void testInsert();
28 void testInsertOrder();
29 void testErase();
30 void testIterator();
31 void testConstIterator();
32 void testIntIndex();
33 void testStringIndex();
34
35 void setUp();
36 void tearDown();
37
38 static CppUnit::Test* suite();
39
40private:
41};
42
43
44#endif // ListMapTest_INCLUDED
45