add ability to return false to cancel execution in pre Checks and remove return type on post checks
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user