Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 lines
287B

  1. #include "scope_guard.h"
  2. #include <catch.hpp>
  3. TEST_CASE("deleter called on destruction", "[ScopeGuard]")
  4. {
  5. bool executed = false;
  6. {
  7. auto guard = scope_guard([&executed] { executed = true; });
  8. static_cast<void>(guard);
  9. }
  10. REQUIRE(executed == true);
  11. }