ソースを参照

Test cases added (#47).

main
offa 7年前
コミット
0789d10f91
1個のファイルの変更25行の追加0行の削除
  1. +25
    -0
      test/ScopeFailTest.cpp

+ 25
- 0
test/ScopeFailTest.cpp ファイルの表示

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

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

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


読み込み中…
キャンセル
保存