mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-14 11:47:15 +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
|
||
|
|