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