@@ -222,6 +222,50 @@ This can be useful for outputting `INFO` messages into the Unity output stream
222
222
without actually ending the test. Like pass and fail messages, it will be output
223
223
with the filename and line number.
224
224
225
+ #### `TEST_PROTECT_NORETURN()`
226
+
227
+ This macro prepares an environment to test a function that is declared `noreturn`.
228
+
229
+ ```
230
+ if(TEST_PROTECT_NORETURN()){
231
+ }
232
+ ```
233
+
234
+ The function `mock_go_elsewhere()` would use `TEST_DO_NOT_RETURN()`
235
+ instead of returning.
236
+
237
+ #### `TEST_NOT_RETURNING(call)`
238
+
239
+ Calls a function, and the test fails if the function returns.
240
+ Instead, the called function should use `TEST_DO_NOT_RETURN()`.
241
+
242
+ ```
243
+ /* prepare the test here */
244
+ TEST_NOT_RETURNING(go_elsewhere(42));
245
+ ```
246
+
247
+ Note: this can be used to call a mock function (that uses
248
+ `TEST_NOT_RETURNING()` instead of returning), or an actual function
249
+ that effectively does not return. In the later case, the control
250
+ won't resume to the caller test (unless there's a failure), so the
251
+ test should expect that and have set up things accordingly.
252
+
253
+ This cannot be used if `UNITY_EXCLUDE_SETJMP_H` is defined.
254
+
255
+ #### `TEST_DO_NOT_RETURN()`
256
+
257
+ Aborts the execution, and resume after the current
258
+ `TEST_NOT_RETURNING()`, successfully.
259
+
260
+ This should be used in mock functions declared `noreturn` instead of
261
+ returning (explicitely or implicitely).
262
+
263
+ Note: actual functions that don't return will go wherever they shoud
264
+ go and it's assumed this is handled in the test. These macros are
265
+ intended to be used by mock functions.
266
+
267
+ This cannot be used if `UNITY_EXCLUDE_SETJMP_H` is defined.
268
+
225
269
### Boolean
226
270
227
271
#### `TEST_ASSERT (condition)`
0 commit comments