cpp higlighting for test-cases-and-sections.md

add c++ highlighting for the last two examples, all others already have highlighting
This commit is contained in:
NeroBurner 2019-01-07 09:40:51 +01:00 committed by Martin Hořeňovský
parent c1720d0c42
commit 23f023f9ed
1 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ or the _template-args_.
Example:
```
```cpp
template< typename T>
struct Foo {
size_t size() {
@ -180,7 +180,7 @@ TEMPLATE_PRODUCT_TEST_CASE("A Template product test case", "[template][product]"
```
You can also have different arities in the _template-arg_ packs:
```
```cpp
TEMPLATE_PRODUCT_TEST_CASE("Product with differing arities", "[template][product]", std::tuple, (int, (int, double), (int, double, float))) {
TestType x;
REQUIRE(std::tuple_size<TestType>::value >= 1);