Sfoglia il codice sorgente

Test case added (#47).

main
offa 7 anni fa
parent
commit
2567ef98e0
1 ha cambiato i file con 25 aggiunte e 0 eliminazioni
  1. +25
    -0
      test/ScopeSuccessTest.cpp

+ 25
- 0
test/ScopeSuccessTest.cpp Vedi File

@@ -155,3 +155,28 @@ TEST_CASE("move transfers state if released", "[ScopeSuccess]")
static_cast<void>(guard);
}

TEST_CASE("deleter not called on exception", "[ScopeFail]")
{
try
{
auto guard = sr::make_scope_success(deleter);
throw 3;
}
catch( ... )
{
}
}

TEST_CASE("deleter called on pending exception", "[ScopeFail]")
{
try
{
throw 3;
}
catch( ... )
{
REQUIRE_CALL(m, deleter());
auto guard = sr::make_scope_success(deleter);
}
}


Loading…
Annulla
Salva