Searched refs:assertCommand (Results 1 – 4 of 4) sorted by relevance
15 public void onAssertSuccess(IAssert assertCommand) { in onAssertSuccess() argument17 super.onAssertSuccess(assertCommand); in onAssertSuccess()21 public void onAssertFailure(IAssert assertCommand) { in onAssertFailure() argument23 super.onAssertFailure(assertCommand); in onAssertFailure()27 public void onAssertFailure(IAssert assertCommand, AssertionError ex) { in onAssertFailure() argument29 super.onAssertFailure(assertCommand, ex); in onAssertFailure()33 public void onBeforeAssert(IAssert assertCommand) { in onBeforeAssert() argument35 super.onBeforeAssert(assertCommand); in onBeforeAssert()39 public void onAfterAssert(IAssert assertCommand) { in onAfterAssert() argument41 super.onAfterAssert(assertCommand); in onAfterAssert()
19 public void onAssertSuccess(IAssert assertCommand) { in testOnSucceedAndFailureCalled()20 succeed.add(assertCommand); in testOnSucceedAndFailureCalled()24 public void onAssertFailure(IAssert assertCommand, AssertionError ex) { in testOnSucceedAndFailureCalled()25 failures.add(assertCommand); in testOnSucceedAndFailureCalled()
10 void executeAssert(IAssert<?> assertCommand); in executeAssert() argument15 void onAssertSuccess(IAssert<?> assertCommand); in onAssertSuccess() argument22 void onAssertFailure(IAssert<?> assertCommand); in onAssertFailure() argument28 void onAssertFailure(IAssert<?> assertCommand, AssertionError ex); in onAssertFailure() argument33 void onBeforeAssert(IAssert<?> assertCommand); in onBeforeAssert() argument38 void onAfterAssert(IAssert<?> assertCommand); in onAfterAssert() argument
12 protected void doAssert(IAssert<?> assertCommand) { in doAssert() argument13 onBeforeAssert(assertCommand); in doAssert()15 executeAssert(assertCommand); in doAssert()16 onAssertSuccess(assertCommand); in doAssert()18 onAssertFailure(assertCommand, ex); in doAssert()21 onAfterAssert(assertCommand); in doAssert()29 public void executeAssert(IAssert<?> assertCommand) { in executeAssert() argument30 assertCommand.doAssert(); in executeAssert()37 public void onAssertSuccess(IAssert<?> assertCommand) { in onAssertSuccess() argument47 public void onAssertFailure(IAssert<?> assertCommand) { in onAssertFailure() argument[all …]