Add broken test

This commit is contained in:
Martin Hořeňovský 2021-10-28 11:20:00 +02:00
parent f2f0dcc511
commit f45dac8fc1
1 changed files with 3 additions and 0 deletions

View File

@ -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") {