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