add ability to return false to cancel execution in pre Checks and remove return type on post checks
All checks were successful
github-mirror / push-github (push) Successful in 7s
Build / Gradle-Build (push) Successful in 14s
Test / Gradle-Test (push) Successful in 21s

This commit is contained in:
2024-12-01 13:06:42 +01:00
parent 33392b02fb
commit c363ab9744
4 changed files with 6 additions and 7 deletions

View File

@@ -28,11 +28,10 @@ public class TestInteractionCheck implements InteractionCheck<TestInteractionChe
}
@Override
public boolean postExec(Object context, TestCheck annotation) {
public void postExec(Object context, TestCheck annotation) {
assertNotNull(annotation);
assertNotNull(context);
postExecuted = true;
return true;
}
}