catch2/projects
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
..
ExtraTests Add STATIC_REQUIRE assertion 2018-10-16 16:16:00 +02:00
SelfTest Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00
XCode/OCTest Reverted removal of #ifdef for chrono converters, and fixed in OC project a different way 2018-06-12 15:37:06 +01:00
CMakeLists.txt Template tests: added TEMPLATE_PRODUCT_TEST_CASE 2018-12-10 08:22:09 +01:00
Where did the projects go.txt Renamed missing project explainer filename 2017-01-09 21:59:53 +00:00