mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Inline shouldDebugBreak()
This commit is contained in:
parent
5323202652
commit
8141a7836f
@ -116,9 +116,6 @@ namespace Catch {
|
|||||||
return getCurrentContext().getConfig()->allowThrows();
|
return getCurrentContext().getConfig()->allowThrows();
|
||||||
}
|
}
|
||||||
|
|
||||||
auto AssertionHandler::shouldDebugBreak() const -> bool {
|
|
||||||
return m_shouldDebugBreak;
|
|
||||||
}
|
|
||||||
void AssertionHandler::reactWithDebugBreak() const {
|
void AssertionHandler::reactWithDebugBreak() const {
|
||||||
if (m_shouldDebugBreak) {
|
if (m_shouldDebugBreak) {
|
||||||
///////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////
|
||||||
|
@ -57,7 +57,8 @@ namespace Catch {
|
|||||||
void handle( ResultWas::OfType resultType, ITransientExpression const* expr, bool negated );
|
void handle( ResultWas::OfType resultType, ITransientExpression const* expr, bool negated );
|
||||||
void handle( AssertionResultData const& resultData, ITransientExpression const* expr );
|
void handle( AssertionResultData const& resultData, ITransientExpression const* expr );
|
||||||
|
|
||||||
auto shouldDebugBreak() const -> bool;
|
auto shouldDebugBreak() const -> bool { return m_shouldDebugBreak; }
|
||||||
|
|
||||||
auto allowThrows() const -> bool;
|
auto allowThrows() const -> bool;
|
||||||
void reactWithDebugBreak() const;
|
void reactWithDebugBreak() const;
|
||||||
void reactWithoutDebugBreak() const;
|
void reactWithoutDebugBreak() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user