mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 11:17:31 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
69 lines
1.3 KiB
C++
69 lines
1.3 KiB
C++
//
|
|
// TuplesTest.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/TuplesTest.h#1 $
|
|
//
|
|
// Definition of the TuplesTest class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef TuplesTest_INCLUDED
|
|
#define TuplesTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class TuplesTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
TuplesTest(const std::string& name);
|
|
~TuplesTest();
|
|
|
|
void testTuple1();
|
|
void testTuple2();
|
|
void testTuple3();
|
|
void testTuple4();
|
|
void testTuple5();
|
|
void testTuple6();
|
|
void testTuple7();
|
|
void testTuple8();
|
|
void testTuple9();
|
|
void testTuple10();
|
|
void testTuple11();
|
|
void testTuple12();
|
|
void testTuple13();
|
|
void testTuple14();
|
|
void testTuple15();
|
|
void testTuple16();
|
|
void testTuple17();
|
|
void testTuple18();
|
|
void testTuple19();
|
|
void testTuple20();
|
|
void testTupleOrder();
|
|
void testMemOverhead();
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
|
|
template <class T>
|
|
void testTupleStrictWeak(const T& t1, const T& t2, const T& t3)
|
|
{
|
|
assert (t1 < t2 && !(t2 < t1)); // antisymmetric
|
|
assert (t1 < t2 && t2 < t3 && t1 < t3); // transitive
|
|
assert (!(t1 < t1)); // irreflexive
|
|
}
|
|
};
|
|
|
|
|
|
#endif // TuplesTest_INCLUDED
|