2011-05-27 21:27:55 +02:00
|
|
|
|
/*
|
|
|
|
|
|
GeneratorCombinations(Test) - verify generating case combinations
|
|
|
|
|
|
|
Copyright: clarify and simplify the file headers
* Lumiera source code always was copyrighted by individual contributors
* there is no entity "Lumiera.org" which holds any copyrights
* Lumiera source code is provided under the GPL Version 2+
== Explanations ==
Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above.
For this to become legally effective, the ''File COPYING in the root directory is sufficient.''
The licensing header in each file is not strictly necessary, yet considered good practice;
attaching a licence notice increases the likeliness that this information is retained
in case someone extracts individual code files. However, it is not by the presence of some
text, that legally binding licensing terms become effective; rather the fact matters that a
given piece of code was provably copyrighted and published under a license. Even reformatting
the code, renaming some variables or deleting parts of the code will not alter this legal
situation, but rather creates a derivative work, which is likewise covered by the GPL!
The most relevant information in the file header is the notice regarding the
time of the first individual copyright claim. By virtue of this initial copyright,
the first author is entitled to choose the terms of licensing. All further
modifications are permitted and covered by the License. The specific wording
or format of the copyright header is not legally relevant, as long as the
intention to publish under the GPL remains clear. The extended wording was
based on a recommendation by the FSF. It can be shortened, because the full terms
of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
|
|
|
|
Copyright (C)
|
|
|
|
|
|
2011, Hermann Vosseler <Ichthyostega@web.de>
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
Copyright: clarify and simplify the file headers
* Lumiera source code always was copyrighted by individual contributors
* there is no entity "Lumiera.org" which holds any copyrights
* Lumiera source code is provided under the GPL Version 2+
== Explanations ==
Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above.
For this to become legally effective, the ''File COPYING in the root directory is sufficient.''
The licensing header in each file is not strictly necessary, yet considered good practice;
attaching a licence notice increases the likeliness that this information is retained
in case someone extracts individual code files. However, it is not by the presence of some
text, that legally binding licensing terms become effective; rather the fact matters that a
given piece of code was provably copyrighted and published under a license. Even reformatting
the code, renaming some variables or deleting parts of the code will not alter this legal
situation, but rather creates a derivative work, which is likewise covered by the GPL!
The most relevant information in the file header is the notice regarding the
time of the first individual copyright claim. By virtue of this initial copyright,
the first author is entitled to choose the terms of licensing. All further
modifications are permitted and covered by the License. The specific wording
or format of the copyright header is not legally relevant, as long as the
intention to publish under the GPL remains clear. The extended wording was
based on a recommendation by the FSF. It can be shortened, because the full terms
of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
|
|
|
|
**Lumiera** is free software; you can redistribute it and/or modify it
|
|
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
|
|
option) any later version. See the file COPYING for further details.
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
Copyright: clarify and simplify the file headers
* Lumiera source code always was copyrighted by individual contributors
* there is no entity "Lumiera.org" which holds any copyrights
* Lumiera source code is provided under the GPL Version 2+
== Explanations ==
Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above.
For this to become legally effective, the ''File COPYING in the root directory is sufficient.''
The licensing header in each file is not strictly necessary, yet considered good practice;
attaching a licence notice increases the likeliness that this information is retained
in case someone extracts individual code files. However, it is not by the presence of some
text, that legally binding licensing terms become effective; rather the fact matters that a
given piece of code was provably copyrighted and published under a license. Even reformatting
the code, renaming some variables or deleting parts of the code will not alter this legal
situation, but rather creates a derivative work, which is likewise covered by the GPL!
The most relevant information in the file header is the notice regarding the
time of the first individual copyright claim. By virtue of this initial copyright,
the first author is entitled to choose the terms of licensing. All further
modifications are permitted and covered by the License. The specific wording
or format of the copyright header is not legally relevant, as long as the
intention to publish under the GPL remains clear. The extended wording was
based on a recommendation by the FSF. It can be shortened, because the full terms
of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00
|
|
|
|
* *****************************************************************/
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
2017-02-22 01:54:20 +01:00
|
|
|
|
/** @file generator-combinations-test.cpp
|
2017-02-22 03:17:18 +01:00
|
|
|
|
** unit test \ref GeneratorCombinations_test
|
2016-11-03 18:20:10 +01:00
|
|
|
|
*/
|
|
|
|
|
|
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
|
|
|
|
#include "lib/meta/generator.hpp"
|
|
|
|
|
|
#include "lib/meta/generator-combinations.hpp"
|
|
|
|
|
|
#include "meta/typelist-diagnostics.hpp"
|
2013-09-01 17:36:05 +02:00
|
|
|
|
#include "lib/format-string.hpp"
|
2016-01-07 03:58:29 +01:00
|
|
|
|
#include "lib/format-cout.hpp"
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using ::test::Test;
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-03 02:56:50 +01:00
|
|
|
|
namespace lib {
|
|
|
|
|
|
namespace meta {
|
2011-05-27 21:27:55 +02:00
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace { // test cases and data....
|
|
|
|
|
|
|
2025-06-07 18:04:59 +02:00
|
|
|
|
typedef Types< Num<1>
|
2011-05-27 21:27:55 +02:00
|
|
|
|
, Num<3>
|
|
|
|
|
|
, Num<5>
|
|
|
|
|
|
> Types1;
|
2025-06-07 18:04:59 +02:00
|
|
|
|
typedef Types< Num<2>
|
2011-05-27 21:27:55 +02:00
|
|
|
|
, Num<4>
|
|
|
|
|
|
, Num<6>
|
|
|
|
|
|
> Types2;
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-28 01:16:22 +02:00
|
|
|
|
using util::_Fmt;
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* A Test-Template to be instantiated
|
|
|
|
|
|
* for all possible combinations
|
|
|
|
|
|
* of the {Types1} x {Types2}
|
|
|
|
|
|
*/
|
|
|
|
|
|
template<class T1, class T2, class BASE>
|
|
|
|
|
|
struct TestCase
|
2011-05-28 01:46:06 +02:00
|
|
|
|
: BASE
|
2011-05-27 21:27:55 +02:00
|
|
|
|
{
|
|
|
|
|
|
static string
|
|
|
|
|
|
visitAll()
|
|
|
|
|
|
{
|
|
|
|
|
|
T1 param1;
|
|
|
|
|
|
T2 param2;
|
2013-09-28 01:16:22 +02:00
|
|
|
|
return _Fmt("-<%u%u>%s") % uint(param1)
|
|
|
|
|
|
% uint(param2)
|
|
|
|
|
|
% BASE::visitAll();
|
2011-05-27 21:27:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2011-05-28 01:46:06 +02:00
|
|
|
|
template<>
|
2025-06-02 17:46:40 +02:00
|
|
|
|
struct TestCase<void,void,Nil>
|
2011-05-27 21:27:55 +02:00
|
|
|
|
{
|
|
|
|
|
|
static string
|
|
|
|
|
|
visitAll()
|
|
|
|
|
|
{
|
|
|
|
|
|
return "-|";
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2025-06-02 17:46:40 +02:00
|
|
|
|
typedef TestCase<void,void,Nil> IterationEnd;
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
|
|
|
|
|
} // (End) test data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-24 23:06:36 +02:00
|
|
|
|
/*********************************************************************//**
|
2011-05-27 21:27:55 +02:00
|
|
|
|
* @test check utilities for generating case combinations.
|
|
|
|
|
|
* - verify the Cartesian product is built properly
|
|
|
|
|
|
* - instantiate a two-parameter test template
|
|
|
|
|
|
* for all those cases, as given by the
|
|
|
|
|
|
* Cartesian product of two Type collections
|
|
|
|
|
|
*/
|
|
|
|
|
|
class GeneratorCombinations_test : public Test
|
|
|
|
|
|
{
|
|
|
|
|
|
virtual void
|
2025-06-03 16:14:13 +02:00
|
|
|
|
run (Arg)
|
2011-05-27 21:27:55 +02:00
|
|
|
|
{
|
|
|
|
|
|
checkCartesian();
|
|
|
|
|
|
checkCaseInstantiation();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
checkCartesian ()
|
|
|
|
|
|
{
|
|
|
|
|
|
typedef CartesianProduct<Types1,Types2> Cartesian;
|
|
|
|
|
|
DISPLAY (Cartesian);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
checkCaseInstantiation ()
|
|
|
|
|
|
{
|
2025-06-03 16:14:13 +02:00
|
|
|
|
using CombnationCases = InstantiateChainedCombinations< Types1,Types2
|
|
|
|
|
|
, TestCase
|
|
|
|
|
|
, IterationEnd >;
|
2011-05-27 21:27:55 +02:00
|
|
|
|
|
|
|
|
|
|
cout << "All-Test-Combinations-" << CombnationCases::visitAll() << endl;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Register this test class... */
|
|
|
|
|
|
LAUNCHER (GeneratorCombinations_test, "unit common");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-03 02:56:50 +01:00
|
|
|
|
}}} // namespace lib::meta::test
|