ulib/3party/sqlpp11/tests/postgresql/usage/assertThrow.h

16 lines
496 B
C
Raw Normal View History

2024-01-06 21:51:10 +08:00
#pragma once
#define assert_throw(code, exception) \
{ \
bool exceptionThrown = false; \
try \
{ \
code; \
} \
catch (const exception&) \
{ \
exceptionThrown = true; \
} \
assert(exceptionThrown); \
}