Use TestCaseInfo in tests directly

This commit is contained in:
Martin Hořeňovský
2021-05-28 23:07:50 +02:00
parent aee31d0620
commit 816f69416b
5 changed files with 13 additions and 13 deletions

View File

@@ -16123,12 +16123,12 @@ Tag.tests.cpp:<line number>
...............................................................................
Tag.tests.cpp:<line number>: PASSED:
REQUIRE( testcase->tags.size() == 1 )
REQUIRE( testcase.tags.size() == 1 )
with expansion:
1 == 1
Tag.tests.cpp:<line number>: PASSED:
REQUIRE( testcase->tags[0].original == "magic.tag"_catch_sr )
REQUIRE( testcase.tags[0].original == "magic.tag"_catch_sr )
with expansion:
magic.tag == magic.tag