mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-07 09:48:04 +01:00
45 lines
683 B
C++
45 lines
683 B
C++
//
|
|
// ArrayTest.h
|
|
//
|
|
// Definition of the ArrayTest class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ArrayTest_INCLUDED
|
|
#define ArrayTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class ArrayTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
ArrayTest(const std::string& name);
|
|
~ArrayTest();
|
|
|
|
void testConstruction();
|
|
void testOperations();
|
|
void testContainer();
|
|
void testIterator();
|
|
void testAlgorithm();
|
|
void testMultiLevelArray();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // ArrayTest_INCLUDED
|
|
|