From f45dac8fc1827f3566079c2728f9fcd7f86e0716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 28 Oct 2021 11:20:00 +0200 Subject: [PATCH] Add broken test --- projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp b/projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp index 549f3559..1ff3c2fa 100644 --- a/projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +++ b/projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp @@ -53,6 +53,9 @@ TEST_CASE("Generators internals", "[generators][internals]") { // Completely filtered-out generator should throw on construction REQUIRE_THROWS_AS(filter([] (int) { return false; }, value(1)), Catch::GeneratorException); + REQUIRE_THROWS_AS( + filter( []( int ) { return false; }, values( { 1, 2, 3 } ) ), + Catch::GeneratorException ); } SECTION("Take generator") { SECTION("Take less") {