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>2022-01-07 13:35:25 +0300
committeronqtam <vik.kirilov@gmail.com>2022-01-07 13:35:25 +0300
commit803cbd1e8f7a9d8cda9d4bb33083a24a31b50402 (patch)
tree34dff46f17cf289e23fcd45a53149e9968a162c0 /examples
parent8989a656db4af50f184ace13220388890a356bca (diff)
tabs to spaces
Diffstat (limited to 'examples')
-rw-r--r--examples/all_features/assertion_macros.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/all_features/assertion_macros.cpp b/examples/all_features/assertion_macros.cpp
index 43cc7b6c..47159735 100644
--- a/examples/all_features/assertion_macros.cpp
+++ b/examples/all_features/assertion_macros.cpp
@@ -113,19 +113,19 @@ TEST_CASE("REQUIRE level of asserts fail and abort the test case - 5") {
MESSAGE("should not be reached!");
}
TEST_CASE("REQUIRE level of asserts fail and abort the test case - 6") {
- REQUIRE_THROWS_WITH(throw_if(false, ""), "whops!");
+ REQUIRE_THROWS_WITH(throw_if(false, ""), "whops!");
MESSAGE("should not be reached!");
}
TEST_CASE("REQUIRE level of asserts fail and abort the test case - 7") {
- REQUIRE_THROWS_WITH(throw_if(true, ""), "whops!");
+ REQUIRE_THROWS_WITH(throw_if(true, ""), "whops!");
MESSAGE("should not be reached!");
}
TEST_CASE("REQUIRE level of asserts fail and abort the test case - 8") {
- REQUIRE_THROWS_WITH_AS(throw_if(false, ""), "whops!", bool);
+ REQUIRE_THROWS_WITH_AS(throw_if(false, ""), "whops!", bool);
MESSAGE("should not be reached!");
}
TEST_CASE("REQUIRE level of asserts fail and abort the test case - 9") {
- REQUIRE_THROWS_WITH_AS(throw_if(true, ""), "whops!", bool);
+ REQUIRE_THROWS_WITH_AS(throw_if(true, ""), "whops!", bool);
MESSAGE("should not be reached!");
}
TEST_CASE("REQUIRE level of asserts fail and abort the test case - 10") {