Browse Source

Test case added (#47).

main
offa 7 years ago
parent
commit
2567ef98e0
1 changed files with 25 additions and 0 deletions
  1. +25
    -0
      test/ScopeSuccessTest.cpp

+ 25
- 0
test/ScopeSuccessTest.cpp View File

static_cast<void>(guard); 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…
Cancel
Save