1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-15 01:07:12 +01:00
SqMod/vendor/POCO/Foundation/testsuite/src/NamedTuplesTest.h
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

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