qxLib
|
Go to the source code of this file.
Macros | |
#define | QX_ASSERT(condition, ...) |
Verifies that condition is true. More... | |
#define | QX_ASSERT_NO_ENTRY(...) _QX_ASSERT_NO_ENTRY(QX_ASSERT_BEFORE_DEBUG_BREAK, QX_ASSERT_DEBUG_BREAK, QX_ASSERT_AFTER_DEBUG_BREAK, ##__VA_ARGS__) |
Fails unconditionally if this code should not be executed. More... | |
#define | QX_EXPECT(condition, ...) |
Verifies that condition is true. More... | |
#define | QX_EXPECT_NO_ENTRY(...) _QX_ASSERT_NO_ENTRY(QX_EXPECT_BEFORE_DEBUG_BREAK, QX_EXPECT_DEBUG_BREAK, QX_EXPECT_AFTER_DEBUG_BREAK, ##__VA_ARGS__) |
Fails unconditionally if this code should not be executed. More... | |
#define | QX_EXPECT_CONTINUE(condition, ...) |
Verifies that condition is true and continues loop if false. More... | |
#define | QX_EXPECT_BREAK(condition, ...) |
Verifies that condition is true and break loop if false. More... | |
#define | QX_EXPECT_RETURN(condition, return_value, ...) |
Verifies that condition is true and "return return_value;" if false. More... | |
#define | QX_EXPECT_RETURN_VOID(condition, ...) |
Verifies that condition is true and "return;" if false. More... | |
#define | QX_EXPECT_CO_RETURN(condition, return_value, ...) |
Verifies that condition is true and "co_return return_value;" if false. More... | |
#define | QX_EXPECT_CO_RETURN_VOID(condition, ...) |
Verifies that condition is true and "co_return;" if false. More... | |
#define QX_ASSERT | ( | condition, | |
... | |||
) |
Verifies that condition is true.
ASSERT macros generate fatal failures and abort the program execution
condition | - condition to check. if false, assert fails |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_ASSERT_NO_ENTRY | ( | ... | ) | _QX_ASSERT_NO_ENTRY(QX_ASSERT_BEFORE_DEBUG_BREAK, QX_ASSERT_DEBUG_BREAK, QX_ASSERT_AFTER_DEBUG_BREAK, ##__VA_ARGS__) |
Fails unconditionally if this code should not be executed.
ASSERT macros generate fatal failures and abort the program execution
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT | ( | condition, | |
... | |||
) |
Verifies that condition is true.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_BREAK | ( | condition, | |
... | |||
) |
Verifies that condition is true and break loop if false.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_CO_RETURN | ( | condition, | |
return_value, | |||
... | |||
) |
Verifies that condition is true and "co_return return_value;" if false.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
return_value | - return value. use empty argument, if return type is void |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_CO_RETURN_VOID | ( | condition, | |
... | |||
) |
Verifies that condition is true and "co_return;" if false.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_CONTINUE | ( | condition, | |
... | |||
) |
Verifies that condition is true and continues loop if false.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_NO_ENTRY | ( | ... | ) | _QX_ASSERT_NO_ENTRY(QX_EXPECT_BEFORE_DEBUG_BREAK, QX_EXPECT_DEBUG_BREAK, QX_EXPECT_AFTER_DEBUG_BREAK, ##__VA_ARGS__) |
Fails unconditionally if this code should not be executed.
EXPECT macros generate nonfatal failures and allow to continue running
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_RETURN | ( | condition, | |
return_value, | |||
... | |||
) |
Verifies that condition is true and "return return_value;" if false.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
return_value | - return value. use empty argument, if return type is void |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |
#define QX_EXPECT_RETURN_VOID | ( | condition, | |
... | |||
) |
Verifies that condition is true and "return;" if false.
EXPECT macros generate nonfatal failures and allow to continue running
condition | - condition to check. if false, assert fails |
... | - "category + format string + format arguments" or "category + format string" or "format string + format arguments" or "format string" or "category" |