mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-20 18:00:05 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
46 lines
828 B
C++
46 lines
828 B
C++
//
|
|
// LinearHashTableTest.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/LinearHashTableTest.h#1 $
|
|
//
|
|
// Definition of the LinearHashTableTest class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef LinearHashTableTest_INCLUDED
|
|
#define LinearHashTableTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class LinearHashTableTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
LinearHashTableTest(const std::string& name);
|
|
~LinearHashTableTest();
|
|
|
|
void testInsert();
|
|
void testErase();
|
|
void testIterator();
|
|
void testConstIterator();
|
|
void testPerformanceInt();
|
|
void testPerformanceStr();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // LinearHashTableTest_INCLUDED
|