mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 09:17:13 +01:00
68 lines
1.3 KiB
C
68 lines
1.3 KiB
C
|
//
|
||
|
// NamedTuplesTest.h
|
||
|
//
|
||
|
// Definition of the NamedTuplesTest class.
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef NamedTuplesTest_INCLUDED
|
||
|
#define NamedTuplesTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class NamedTuplesTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
NamedTuplesTest(const std::string& name);
|
||
|
~NamedTuplesTest();
|
||
|
|
||
|
void testNamedTuple1();
|
||
|
void testNamedTuple2();
|
||
|
void testNamedTuple3();
|
||
|
void testNamedTuple4();
|
||
|
void testNamedTuple5();
|
||
|
void testNamedTuple6();
|
||
|
void testNamedTuple7();
|
||
|
void testNamedTuple8();
|
||
|
void testNamedTuple9();
|
||
|
void testNamedTuple10();
|
||
|
void testNamedTuple11();
|
||
|
void testNamedTuple12();
|
||
|
void testNamedTuple13();
|
||
|
void testNamedTuple14();
|
||
|
void testNamedTuple15();
|
||
|
void testNamedTuple16();
|
||
|
void testNamedTuple17();
|
||
|
void testNamedTuple18();
|
||
|
void testNamedTuple19();
|
||
|
void testNamedTuple20();
|
||
|
void testNamedTuple21();
|
||
|
void testNamedTuple22();
|
||
|
void testNamedTuple23();
|
||
|
void testNamedTuple24();
|
||
|
void testNamedTuple25();
|
||
|
void testNamedTuple26();
|
||
|
void testNamedTuple27();
|
||
|
void testNamedTuple28();
|
||
|
void testNamedTuple29();
|
||
|
void testNamedTuple30();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // NamedTuplesTest_INCLUDED
|