0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00
sqlpp11/tests/postgresql/usage/assertThrow.h

16 lines
496 B
C++

#pragma once
#define assert_throw(code, exception) \
{ \
bool exceptionThrown = false; \
try \
{ \
code; \
} \
catch (const exception&) \
{ \
exceptionThrown = true; \
} \
assert(exceptionThrown); \
}