1//
2// LinearHashTableTest.h
3//
4// Definition of the LinearHashTableTest 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 LinearHashTableTest_INCLUDED
14#define LinearHashTableTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class LinearHashTableTest: public CppUnit::TestCase
22{
23public:
24 LinearHashTableTest(const std::string& name);
25 ~LinearHashTableTest();
26
27 void testInsert();
28 void testErase();
29 void testIterator();
30 void testConstIterator();
31 void testPerformanceInt();
32 void testPerformanceStr();
33
34 void setUp();
35 void tearDown();
36
37 static CppUnit::Test* suite();
38
39private:
40};
41
42
43#endif // LinearHashTableTest_INCLUDED
44