mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
4c942600bb
Removed timezone handling in the process (needs to be documented). Note: on_conflict does not check for constraints (needs to be documented). Note: some of the constraints tests seem to be aiming for a different static_assert.
19 lines
537 B
C++
19 lines
537 B
C++
#ifndef ASSERT_THROW_H
|
|
#define ASSERT_THROW_H
|
|
|
|
#define assert_throw(code, exception) \
|
|
{ \
|
|
bool exceptionThrown = false; \
|
|
try \
|
|
{ \
|
|
code; \
|
|
} \
|
|
catch (const exception&) \
|
|
{ \
|
|
exceptionThrown = true; \
|
|
} \
|
|
assert(exceptionThrown); \
|
|
}
|
|
|
|
#endif
|