catch2/projects/SelfTest/Baselines
Jozef Grajciar 21a1cd5683 Template tests: added TEMPLATE_PRODUCT_TEST_CASE
support for generating test cases based on multiple template template
types combined with template arguments for each of the template template
types specified

e.g.
```
TEMPLATE_PRODUCT_TEST_CASE("template product","[template]",
			   (std::tuple, std::pair, std::map),
			   ((int,float),(char,double),(int,char)))
```
will effectively create 9 test cases with types:
std::tuple<int,float>
std::tuple<char,double>
std::tuple<int,char>
std::pair<int,float>
std::pair<char, double>
std::pair<int,char>
std::map<int,float>
std::map<char,double>
std::map<int,char>

Tested type is accessible in test case body as TestType
Unique name is created by appending ` - <index>` to test name
since preprocessor has some limitations in recursions

Closes #1454
2018-12-10 08:22:09 +01:00
..
automake.std.approved.txt Fixup various spelling errors (#1208) 2018-03-07 10:08:35 +01:00
compact.sw.approved.txt Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00
console.std.approved.txt Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00
console.sw.approved.txt Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00
console.swa4.approved.txt ConsoleReporter: minor formatting fix 2018-11-10 19:35:25 +01:00
junit.sw.approved.txt Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00
xml.sw.approved.txt Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00