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:
authorStefan <29021710+Saalvage@users.noreply.github.com>2022-01-13 23:03:37 +0300
committerGitHub <noreply@github.com>2022-01-13 23:03:37 +0300
commit58f3ec87df8d10de97b5a28cfe9cdc0fb244b001 (patch)
treeb29771025549722c8f3e339978b0f40986809fdf /examples
parent1a62e75bbec9a7738fd5be219374f5258382ab65 (diff)
Feature: Better NaN (#584)
* matcher-like nan check * Remove superfluous extern template declarations * Add explicit template parameters * Correct template instantiation * Fix test includes * class -> struct * Correctly instantiate * Oops * Try fix interface * Add MinGW exception * Add info regarding interface decl and def * Adjust docs * Remove accidental paste in comment * Remove redundant macro definition
Diffstat (limited to 'examples')
-rw-r--r--examples/all_features/assert_returns_disabled.cpp3
-rw-r--r--examples/all_features/assertion_macros.cpp13
-rw-r--r--examples/all_features/asserts_used_outside_of_tests.cpp1
-rw-r--r--examples/all_features/stringification.cpp5
-rw-r--r--examples/all_features/test_output/assertion_macros.cpp.txt21
-rw-r--r--examples/all_features/test_output/assertion_macros.cpp_junit.txt22
-rw-r--r--examples/all_features/test_output/assertion_macros.cpp_xml.txt45
-rw-r--r--examples/all_features/test_output/asserts_used_outside_of_tests.cpp.txt2
-rw-r--r--examples/all_features/test_output/asserts_used_outside_of_tests.cpp_junit.txt2
-rw-r--r--examples/all_features/test_output/asserts_used_outside_of_tests.cpp_xml.txt2
-rw-r--r--examples/all_features/test_output/filter_2.txt2
-rw-r--r--examples/all_features/test_output/filter_2_xml.txt3
-rw-r--r--examples/all_features/test_output/stringification.cpp.txt8
-rw-r--r--examples/all_features/test_output/stringification.cpp_junit.txt14
-rw-r--r--examples/all_features/test_output/stringification.cpp_xml.txt20
-rw-r--r--examples/executable_dll_and_plugin/dll.cpp6
-rw-r--r--examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin.txt11
-rw-r--r--examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_junit.txt11
-rw-r--r--examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_xml.txt14
19 files changed, 85 insertions, 120 deletions
diff --git a/examples/all_features/assert_returns_disabled.cpp b/examples/all_features/assert_returns_disabled.cpp
index c181d1c8..d2774b4a 100644
--- a/examples/all_features/assert_returns_disabled.cpp
+++ b/examples/all_features/assert_returns_disabled.cpp
@@ -1,7 +1,6 @@
#include <doctest/doctest.h>
#include <cstdio>
-#include <limits>
#ifndef TEST_FLIP
@@ -24,8 +23,6 @@ static int test_disabled_var_ = [] {
if (TEST_FLIP ^ CHECK_NOTHROW([]{ }())) { TEST_FAIL(); }
if (CHECK_THROWS_WITH([] { throw 2; }(), "2")) { TEST_FAIL(); }
#endif
- if (CHECK_NAN(std::numeric_limits<float>::quiet_NaN())) { TEST_FAIL(); }
- if (CHECK_NOT_NAN(22.)) { TEST_FAIL(); }
return 0;
}();
diff --git a/examples/all_features/assertion_macros.cpp b/examples/all_features/assertion_macros.cpp
index cd03dd15..524751ca 100644
--- a/examples/all_features/assertion_macros.cpp
+++ b/examples/all_features/assertion_macros.cpp
@@ -5,7 +5,6 @@
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
#include <stdexcept>
#include <cmath>
-#include <limits>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
TEST_CASE("normal macros") {
@@ -210,8 +209,6 @@ TEST_CASE("check return values") {
if (CHECK_THROWS_AS(throw_if(true, 2), int)) { MESSAGE(":D"); }
if (CHECK_NOTHROW(throw_if(false, 2))) { MESSAGE(":D"); }
if (CHECK_THROWS_WITH(throw_if(true, 2), "2")) { MESSAGE(":D"); }
- if (CHECK_NAN(std::numeric_limits<float>::quiet_NaN())) { MESSAGE(":D"); }
- if (CHECK_NOT_NAN(22.)) { MESSAGE(":D"); }
}
TEST_CASE("check return values no print") {
@@ -221,15 +218,5 @@ TEST_CASE("check return values no print") {
if (CHECK_THROWS_AS(throw_if(true, 2), doctest::Approx)) { MESSAGE(":D"); }
if (CHECK_NOTHROW(throw_if(true, 2))) { MESSAGE(":D"); }
if (CHECK_THROWS_WITH(throw_if(true, 2), "1")) { MESSAGE(":D"); }
- if (CHECK_NAN(0.)) { MESSAGE(":D"); }
- // CHECK_NOT_NAN can't be checked because stringification is (partly) implementation defined
}
DOCTEST_MSVC_SUPPRESS_WARNING_POP
-
-TEST_CASE("nan") {
- REQUIRE_NOT_NAN(0.f);
- CHECK_NAN(std::numeric_limits<long double>::infinity());
- CHECK_NOT_NAN(0.);
- WARN_NOT_NAN(std::numeric_limits<float>::quiet_NaN());
- REQUIRE_NAN(std::numeric_limits<long double>::signaling_NaN());
-}
diff --git a/examples/all_features/asserts_used_outside_of_tests.cpp b/examples/all_features/asserts_used_outside_of_tests.cpp
index b4273481..289c2666 100644
--- a/examples/all_features/asserts_used_outside_of_tests.cpp
+++ b/examples/all_features/asserts_used_outside_of_tests.cpp
@@ -22,7 +22,6 @@ static void some_func() {
CHECK(false);
CHECK_THROWS(std::cout << "hello! \n");
- CHECK_NAN(0.);
}
// std::mutex g_mut;
diff --git a/examples/all_features/stringification.cpp b/examples/all_features/stringification.cpp
index 97e21e4f..adca1e7f 100644
--- a/examples/all_features/stringification.cpp
+++ b/examples/all_features/stringification.cpp
@@ -7,6 +7,7 @@ DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
#include <vector>
#include <list>
#include <sstream>
+#include <limits>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
DOCTEST_MSVC_SUPPRESS_WARNING(5045) // Spectre mitigation diagnostics
@@ -146,6 +147,10 @@ TEST_CASE("all asserts should fail and show how the objects get stringified") {
CHECK_MESSAGE(s1 == s2, s1, " is not really ", s2);
}
+ CHECK(doctest::IsNaN<double>(0.5));
+ CHECK(doctest::IsNaN<float>(std::numeric_limits<float>::infinity()));
+ // can't test actual nan because it's implementation defined
+
// lets see if this exception gets translated
throw_if(true, bla1);
}
diff --git a/examples/all_features/test_output/assertion_macros.cpp.txt b/examples/all_features/test_output/assertion_macros.cpp.txt
index dbd83134..513939d4 100644
--- a/examples/all_features/test_output/assertion_macros.cpp.txt
+++ b/examples/all_features/test_output/assertion_macros.cpp.txt
@@ -219,10 +219,6 @@ assertion_macros.cpp(0): MESSAGE: :D
assertion_macros.cpp(0): MESSAGE: :D
-assertion_macros.cpp(0): MESSAGE: :D
-
-assertion_macros.cpp(0): MESSAGE: :D
-
===============================================================================
assertion_macros.cpp(0):
TEST CASE: check return values no print
@@ -250,21 +246,8 @@ assertion_macros.cpp(0): ERROR: CHECK_NOTHROW( throw_if(true, 2) ) THREW excepti
assertion_macros.cpp(0): ERROR: CHECK_THROWS_WITH( throw_if(true, 2), "1" ) threw a DIFFERENT exception: "2"
-assertion_macros.cpp(0): ERROR: CHECK_NAN( 0. ) is NOT correct!
- values: CHECK_NAN( 0.0 )
-
-===============================================================================
-assertion_macros.cpp(0):
-TEST CASE: nan
-
-assertion_macros.cpp(0): ERROR: CHECK_NAN( std::numeric_limits<long double>::infinity() ) is NOT correct!
- values: CHECK_NAN( inf )
-
-assertion_macros.cpp(0): WARNING: WARN_NOT_NAN( std::numeric_limits<float>::quiet_NaN() ) is NOT correct!
- values: WARN_NOT_NAN( nanf )
-
===============================================================================
-[doctest] test cases: 24 | 4 passed | 20 failed |
-[doctest] assertions: 99 | 49 passed | 50 failed |
+[doctest] test cases: 23 | 4 passed | 19 failed |
+[doctest] assertions: 92 | 44 passed | 48 failed |
[doctest] Status: FAILURE!
Program code.
diff --git a/examples/all_features/test_output/assertion_macros.cpp_junit.txt b/examples/all_features/test_output/assertion_macros.cpp_junit.txt
index 966f923f..bcc119c3 100644
--- a/examples/all_features/test_output/assertion_macros.cpp_junit.txt
+++ b/examples/all_features/test_output/assertion_macros.cpp_junit.txt
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
- <testsuite name="all_features" errors="0" failures="64" tests="99">
+ <testsuite name="all_features" errors="0" failures="61" tests="92">
<testcase classname="assertion_macros.cpp" name="normal macros" status="run">
<failure type="CHECK">
assertion_macros.cpp(0):
@@ -369,26 +369,6 @@ assertion_macros.cpp(0):
CHECK_THROWS_WITH( throw_if(true, 2), "1" ) threw a DIFFERENT exception: "2"
</failure>
- <failure message="0.0" type="CHECK_NAN">
-assertion_macros.cpp(0):
-CHECK_NAN( 0. ) is NOT correct!
- values: CHECK_NAN( 0.0 )
-
- </failure>
- </testcase>
- <testcase classname="assertion_macros.cpp" name="nan" status="run">
- <failure message="inf" type="CHECK_NAN">
-assertion_macros.cpp(0):
-CHECK_NAN( std::numeric_limits&lt;long double>::infinity() ) is NOT correct!
- values: CHECK_NAN( inf )
-
- </failure>
- <failure message="nanf" type="WARN_NOT_NAN">
-assertion_macros.cpp(0):
-WARN_NOT_NAN( std::numeric_limits&lt;float>::quiet_NaN() ) is NOT correct!
- values: WARN_NOT_NAN( nanf )
-
- </failure>
</testcase>
</testsuite>
</testsuites>
diff --git a/examples/all_features/test_output/assertion_macros.cpp_xml.txt b/examples/all_features/test_output/assertion_macros.cpp_xml.txt
index c0bfcd98..28e10330 100644
--- a/examples/all_features/test_output/assertion_macros.cpp_xml.txt
+++ b/examples/all_features/test_output/assertion_macros.cpp_xml.txt
@@ -578,17 +578,7 @@
:D
</Text>
</Message>
- <Message type="WARNING" filename="assertion_macros.cpp" line="0">
- <Text>
- :D
- </Text>
- </Message>
- <Message type="WARNING" filename="assertion_macros.cpp" line="0">
- <Text>
- :D
- </Text>
- </Message>
- <OverallResultsAsserts successes="11" failures="0" test_case_success="true"/>
+ <OverallResultsAsserts successes="9" failures="0" test_case_success="true"/>
</TestCase>
<TestCase name="check return values no print" filename="assertion_macros.cpp" line="0">
<Expression success="false" type="CHECK" filename="assertion_macros.cpp" line="0">
@@ -666,37 +656,10 @@
1
</ExpectedExceptionString>
</Expression>
- <Expression success="false" type="CHECK_NAN" filename="assertion_macros.cpp" line="0">
- <Original>
- 0.
- </Original>
- <Expanded>
- 0.0
- </Expanded>
- </Expression>
- <OverallResultsAsserts successes="0" failures="10" test_case_success="false"/>
- </TestCase>
- <TestCase name="nan" filename="assertion_macros.cpp" line="0">
- <Expression success="false" type="CHECK_NAN" filename="assertion_macros.cpp" line="0">
- <Original>
- std::numeric_limits&lt;long double>::infinity()
- </Original>
- <Expanded>
- inf
- </Expanded>
- </Expression>
- <Expression success="false" type="WARN_NOT_NAN" filename="assertion_macros.cpp" line="0">
- <Original>
- std::numeric_limits&lt;float>::quiet_NaN()
- </Original>
- <Expanded>
- nanf
- </Expanded>
- </Expression>
- <OverallResultsAsserts successes="3" failures="1" test_case_success="false"/>
+ <OverallResultsAsserts successes="0" failures="9" test_case_success="false"/>
</TestCase>
</TestSuite>
- <OverallResultsAsserts successes="49" failures="50"/>
- <OverallResultsTestCases successes="4" failures="20"/>
+ <OverallResultsAsserts successes="44" failures="48"/>
+ <OverallResultsTestCases successes="4" failures="19"/>
</doctest>
Program code.
diff --git a/examples/all_features/test_output/asserts_used_outside_of_tests.cpp.txt b/examples/all_features/test_output/asserts_used_outside_of_tests.cpp.txt
index f2d85771..9c090606 100644
--- a/examples/all_features/test_output/asserts_used_outside_of_tests.cpp.txt
+++ b/examples/all_features/test_output/asserts_used_outside_of_tests.cpp.txt
@@ -14,5 +14,3 @@ asserts_used_outside_of_tests.cpp(23): ERROR: CHECK( false ) is NOT correct!
values: CHECK( false )
hello!
asserts_used_outside_of_tests.cpp(24): ERROR: an assert dealing with exceptions has failed!
-asserts_used_outside_of_tests.cpp(25): ERROR: CHECK_NAN( 0. ) is NOT correct!
- values: CHECK_NAN( 0.0 )
diff --git a/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_junit.txt b/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_junit.txt
index 0b9472b0..5727760e 100644
--- a/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_junit.txt
+++ b/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_junit.txt
@@ -13,5 +13,3 @@ asserts_used_outside_of_tests.cpp(23): ERROR: CHECK( false ) is NOT correct!
values: CHECK( false )
hello!
asserts_used_outside_of_tests.cpp(24): ERROR: an assert dealing with exceptions has failed!
-asserts_used_outside_of_tests.cpp(25): ERROR: CHECK_NAN( 0. ) is NOT correct!
- values: CHECK_NAN( 0.0 )
diff --git a/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_xml.txt b/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_xml.txt
index 935fda8b..6490fb18 100644
--- a/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_xml.txt
+++ b/examples/all_features/test_output/asserts_used_outside_of_tests.cpp_xml.txt
@@ -15,5 +15,3 @@ asserts_used_outside_of_tests.cpp(23): ERROR: CHECK( false ) is NOT correct!
values: CHECK( false )
hello!
asserts_used_outside_of_tests.cpp(24): ERROR: an assert dealing with exceptions has failed!
-asserts_used_outside_of_tests.cpp(25): ERROR: CHECK_NAN( 0. ) is NOT correct!
- values: CHECK_NAN( 0.0 )
diff --git a/examples/all_features/test_output/filter_2.txt b/examples/all_features/test_output/filter_2.txt
index 86182761..662a7e29 100644
--- a/examples/all_features/test_output/filter_2.txt
+++ b/examples/all_features/test_output/filter_2.txt
@@ -1,6 +1,6 @@
[doctest] run with "--help" for options
===============================================================================
-[doctest] test cases: 0 | 0 passed | 0 failed | 97 skipped
+[doctest] test cases: 0 | 0 passed | 0 failed | 96 skipped
[doctest] assertions: 0 | 0 passed | 0 failed |
[doctest] Status: SUCCESS!
Program code.
diff --git a/examples/all_features/test_output/filter_2_xml.txt b/examples/all_features/test_output/filter_2_xml.txt
index bb6bd653..8764a89d 100644
--- a/examples/all_features/test_output/filter_2_xml.txt
+++ b/examples/all_features/test_output/filter_2_xml.txt
@@ -89,7 +89,6 @@
<TestCase name="namespace 7 member vs global" filename="namespace7.cpp" line="0" skipped="true"/>
<TestCase name="namespace 8 friend vs global" filename="namespace8.cpp" line="0" skipped="true"/>
<TestCase name="namespace 9 both global" filename="namespace9.cpp" line="0" skipped="true"/>
- <TestCase name="nan" filename="assertion_macros.cpp" line="0" skipped="true"/>
<TestCase name="no checks" filename="no_failures.cpp" line="0" skipped="true"/>
<TestCase name="normal macros" filename="assertion_macros.cpp" line="0" skipped="true"/>
</TestSuite>
@@ -137,6 +136,6 @@
<TestCase name="will end from an unknown exception" filename="coverage_maxout.cpp" line="0" skipped="true"/>
</TestSuite>
<OverallResultsAsserts successes="0" failures="0"/>
- <OverallResultsTestCases successes="0" failures="0" skipped="97"/>
+ <OverallResultsTestCases successes="0" failures="0" skipped="96"/>
</doctest>
Program code.
diff --git a/examples/all_features/test_output/stringification.cpp.txt b/examples/all_features/test_output/stringification.cpp.txt
index bdc5c5a8..234e806a 100644
--- a/examples/all_features/test_output/stringification.cpp.txt
+++ b/examples/all_features/test_output/stringification.cpp.txt
@@ -27,6 +27,12 @@ stringification.cpp(0): ERROR: CHECK( s1 == s2 ) is NOT correct!
logged: s1=MyOtherType: 42 s2=MyOtherType: 666
MyOtherType: 42 is not really MyOtherType: 666
+stringification.cpp(0): ERROR: CHECK( doctest::IsNaN<double>(0.5) ) is NOT correct!
+ values: CHECK( 0.5 )
+
+stringification.cpp(0): ERROR: CHECK( doctest::IsNaN<float>(std::numeric_limits<float>::infinity()) ) is NOT correct!
+ values: CHECK( inf )
+
stringification.cpp(0): ERROR: test case THREW exception: MyTypeInherited<int>(5, 4)
===============================================================================
@@ -37,6 +43,6 @@ stringification.cpp(0): ERROR: test case THREW exception: 5
===============================================================================
[doctest] test cases: 2 | 0 passed | 2 failed |
-[doctest] assertions: 7 | 0 passed | 7 failed |
+[doctest] assertions: 9 | 0 passed | 9 failed |
[doctest] Status: FAILURE!
Program code.
diff --git a/examples/all_features/test_output/stringification.cpp_junit.txt b/examples/all_features/test_output/stringification.cpp_junit.txt
index 608cab13..a5e39dc2 100644
--- a/examples/all_features/test_output/stringification.cpp_junit.txt
+++ b/examples/all_features/test_output/stringification.cpp_junit.txt
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
- <testsuite name="all_features" errors="2" failures="7" tests="7">
+ <testsuite name="all_features" errors="2" failures="9" tests="9">
<testcase classname="stringification.cpp" name="all asserts should fail and show how the objects get stringified" status="run">
<failure message="Foo{} == Foo{}" type="CHECK">
stringification.cpp(0):
@@ -47,6 +47,18 @@ CHECK( s1 == s2 ) is NOT correct!
MyOtherType: 42 is not really MyOtherType: 666
</failure>
+ <failure message="0.5" type="CHECK">
+stringification.cpp(0):
+CHECK( doctest::IsNaN&lt;double>(0.5) ) is NOT correct!
+ values: CHECK( 0.5 )
+
+ </failure>
+ <failure message="inf" type="CHECK">
+stringification.cpp(0):
+CHECK( doctest::IsNaN&lt;float>(std::numeric_limits&lt;float>::infinity()) ) is NOT correct!
+ values: CHECK( inf )
+
+ </failure>
<error message="exception">
MyTypeInherited&lt;int>(5, 4)
</error>
diff --git a/examples/all_features/test_output/stringification.cpp_xml.txt b/examples/all_features/test_output/stringification.cpp_xml.txt
index a3af67b0..67f6c96c 100644
--- a/examples/all_features/test_output/stringification.cpp_xml.txt
+++ b/examples/all_features/test_output/stringification.cpp_xml.txt
@@ -68,10 +68,26 @@
MyOtherType: 42 is not really MyOtherType: 666
</Info>
</Expression>
+ <Expression success="false" type="CHECK" filename="stringification.cpp" line="0">
+ <Original>
+ doctest::IsNaN&lt;double>(0.5)
+ </Original>
+ <Expanded>
+ 0.5
+ </Expanded>
+ </Expression>
+ <Expression success="false" type="CHECK" filename="stringification.cpp" line="0">
+ <Original>
+ doctest::IsNaN&lt;float>(std::numeric_limits&lt;float>::infinity())
+ </Original>
+ <Expanded>
+ inf
+ </Expanded>
+ </Expression>
<Exception crash="false">
MyTypeInherited&lt;int>(5, 4)
</Exception>
- <OverallResultsAsserts successes="0" failures="7" test_case_success="false"/>
+ <OverallResultsAsserts successes="0" failures="9" test_case_success="false"/>
</TestCase>
<TestCase name="a test case that registers an exception translator for int and then throws one" filename="stringification.cpp" line="0">
<Exception crash="false">
@@ -80,7 +96,7 @@
<OverallResultsAsserts successes="0" failures="0" test_case_success="false"/>
</TestCase>
</TestSuite>
- <OverallResultsAsserts successes="0" failures="7"/>
+ <OverallResultsAsserts successes="0" failures="9"/>
<OverallResultsTestCases successes="0" failures="2"/>
</doctest>
Program code.
diff --git a/examples/executable_dll_and_plugin/dll.cpp b/examples/executable_dll_and_plugin/dll.cpp
index 0c025f61..22e498b4 100644
--- a/examples/executable_dll_and_plugin/dll.cpp
+++ b/examples/executable_dll_and_plugin/dll.cpp
@@ -2,11 +2,13 @@
#include <doctest/doctest.h>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
-#include <cstdio>
+#include <iostream>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
TEST_CASE("dll") {
- printf("I am a test from the dll!\n");
+ std::cout << "I am a test from the dll!\n";
+ CHECK(true);
+ CHECK(doctest::IsNaN<long double>(0.1L));
}
DOCTEST_SYMBOL_EXPORT void from_dll(); // to silence "-Wmissing-declarations" with GCC
diff --git a/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin.txt b/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin.txt
index ea9bdebe..d489082d 100644
--- a/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin.txt
+++ b/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin.txt
@@ -1,5 +1,12 @@
[doctest] run with "--help" for options
I am a test from the dll!
+===============================================================================
+dll.cpp(0):
+TEST CASE: dll
+
+dll.cpp(0): ERROR: CHECK( doctest::IsNaN<long double>(0.1L) ) is NOT correct!
+ values: CHECK( 0.1 )
+
I am a test from the implementation!
I am a test from the implementation_2!
I am a test from the executable!
@@ -26,6 +33,6 @@ plugin.cpp(0): FATAL ERROR: certain death!
logged: some info
===============================================================================
-[doctest] test cases: 5 | 3 passed | 2 failed | 0 skipped
-[doctest] assertions: 2 | 0 passed | 2 failed |
+[doctest] test cases: 5 | 2 passed | 3 failed | 0 skipped
+[doctest] assertions: 4 | 1 passed | 3 failed |
[doctest] Status: FAILURE!
diff --git a/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_junit.txt b/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_junit.txt
index deb65a4e..00d66345 100644
--- a/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_junit.txt
+++ b/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_junit.txt
@@ -4,8 +4,15 @@ I am a test from the implementation!
I am a test from the implementation_2!
I am a test from the executable!
<testsuites>
- <testsuite name="executable_dll_and_plugin" errors="1" failures="1" tests="2">
- <testcase classname="dll.cpp" name="dll" status="run"/>
+ <testsuite name="executable_dll_and_plugin" errors="1" failures="2" tests="4">
+ <testcase classname="dll.cpp" name="dll" status="run">
+ <failure message="0.1" type="CHECK">
+dll.cpp(0):
+CHECK( doctest::IsNaN&lt;long double>(0.1L) ) is NOT correct!
+ values: CHECK( 0.1 )
+
+ </failure>
+ </testcase>
<testcase classname="implementation.cpp" name="implementation" status="run"/>
<testcase classname="implementation_2.cpp" name="implementation_2" status="run"/>
<testcase classname="main.cpp" name="executable" status="run">
diff --git a/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_xml.txt b/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_xml.txt
index d4f245c0..960f0312 100644
--- a/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_xml.txt
+++ b/examples/executable_dll_and_plugin/test_output/executable_dll_and_plugin_xml.txt
@@ -4,7 +4,15 @@
<TestSuite>
<TestCase name="dll" filename="dll.cpp" line="0">
I am a test from the dll!
- <OverallResultsAsserts successes="0" failures="0" test_case_success="true"/>
+ <Expression success="false" type="CHECK" filename="dll.cpp" line="0">
+ <Original>
+ doctest::IsNaN&lt;long double>(0.1L)
+ </Original>
+ <Expanded>
+ 0.1
+ </Expanded>
+ </Expression>
+ <OverallResultsAsserts successes="1" failures="1" test_case_success="false"/>
</TestCase>
<TestCase name="implementation" filename="implementation.cpp" line="0">
I am a test from the implementation!
@@ -56,6 +64,6 @@ I am a test from the executable!
<OverallResultsAsserts successes="0" failures="2" test_case_success="false"/>
</TestCase>
</TestSuite>
- <OverallResultsAsserts successes="0" failures="2"/>
- <OverallResultsTestCases successes="3" failures="2" skipped="0"/>
+ <OverallResultsAsserts successes="1" failures="3"/>
+ <OverallResultsTestCases successes="2" failures="3" skipped="0"/>
</doctest>