Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2018-05-10 15:29:21 +0300
committeronqtam <vik.kirilov@gmail.com>2018-05-10 16:18:44 +0300
commit1655b24afc67a68c8d6a1513fa5dc1de09db7ccc (patch)
treee1a9cf606b4edf15d67b241adf8b3e9065716621 /examples/all_features/test_output/templated_test_cases.cpp.txt
parent7907692b27ee4fc8a735d7604ced6fd71dad8f78 (diff)
regenerated test output - relates #123
Diffstat (limited to 'examples/all_features/test_output/templated_test_cases.cpp.txt')
-rw-r--r--examples/all_features/test_output/templated_test_cases.cpp.txt40
1 files changed, 15 insertions, 25 deletions
diff --git a/examples/all_features/test_output/templated_test_cases.cpp.txt b/examples/all_features/test_output/templated_test_cases.cpp.txt
index cdb3324d..87c8b231 100644
--- a/examples/all_features/test_output/templated_test_cases.cpp.txt
+++ b/examples/all_features/test_output/templated_test_cases.cpp.txt
@@ -1,48 +1,38 @@
[doctest] run with "--help" for options
===============================================================================
-templated_test_cases.cpp(0)
+templated_test_cases.cpp(0):
TEST CASE: vector stuff<std::vector<int>>
-templated_test_cases.cpp(0) ERROR!
- CHECK( vec.size() == 20 )
-with expansion:
- CHECK( 10 == 20 )
+templated_test_cases.cpp(0): ERROR: CHECK( vec.size() == 20 ) is NOT correct!
+ values: CHECK( 10 == 20 )
===============================================================================
-templated_test_cases.cpp(0)
+templated_test_cases.cpp(0):
TEST CASE: multiple types<>
-templated_test_cases.cpp(0) ERROR!
- CHECK( t2 != T2() )
-with expansion:
- CHECK( 0 != 0 )
+templated_test_cases.cpp(0): ERROR: CHECK( t2 != T2() ) is NOT correct!
+ values: CHECK( 0 != 0 )
===============================================================================
-templated_test_cases.cpp(0)
+templated_test_cases.cpp(0):
TEST CASE: multiple types<>
-templated_test_cases.cpp(0) ERROR!
- CHECK( t2 != T2() )
-with expansion:
- CHECK( 0 != 0 )
+templated_test_cases.cpp(0): ERROR: CHECK( t2 != T2() ) is NOT correct!
+ values: CHECK( 0 != 0 )
===============================================================================
-templated_test_cases.cpp(0)
+templated_test_cases.cpp(0):
TEST CASE: multiple types<>
-templated_test_cases.cpp(0) ERROR!
- CHECK( t2 != T2() )
-with expansion:
- CHECK( 0 != 0 )
+templated_test_cases.cpp(0): ERROR: CHECK( t2 != T2() ) is NOT correct!
+ values: CHECK( 0 != 0 )
===============================================================================
-templated_test_cases.cpp(0)
+templated_test_cases.cpp(0):
TEST CASE: bad stringification of type pair<int_pair>
-templated_test_cases.cpp(0) ERROR!
- CHECK( t2 != T2() )
-with expansion:
- CHECK( 0 != 0 )
+templated_test_cases.cpp(0): ERROR: CHECK( t2 != T2() ) is NOT correct!
+ values: CHECK( 0 != 0 )
===============================================================================
[doctest] test cases: 13 | 8 passed | 5 failed |