#696·goconvey

Allow Assertions (So statements) that do not terminate test case

Author: llarsen71Created Jan 9, 2025Updated Feb 3, 2025

Right now, if an assertion fails, the test terminates. There are cases where this is exactly what is wanted since assertions that follow may then be invalid. However, I often run into cases, where assertions are not sequentially dependent and I want to run the rest of the assertions so that I know all of the issues that need to be fixed. With the current logic, I have to run the tests, fix an error, rerun the tests, fix another error, and repeat until all errors are fixed. This wastes time. Having a nonterminating assertion option would help fix this.