mirror of
https://gitlab.com/splashmapper/splash.git
synced 2026-02-13 15:25:43 +01:00
16 lines
234 B
C++
16 lines
234 B
C++
#include <doctest.h>
|
|
|
|
#include "./utils/scope_guard.h"
|
|
|
|
using namespace Splash;
|
|
|
|
/*************/
|
|
TEST_CASE("Testing OnScopeExit")
|
|
{
|
|
int value = 42;
|
|
{
|
|
OnScopeExit { value = 16384; };
|
|
}
|
|
CHECK_EQ(value, 16384);
|
|
}
|