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