Home
last modified time | relevance | path

Searched refs:assertCommand (Results 1 – 4 of 4) sorted by relevance

/external/testng/src/test/java/test/assertion/
DMyRawAssertion.java15 public void onAssertSuccess(IAssert assertCommand) { in onAssertSuccess() argument
17 super.onAssertSuccess(assertCommand); in onAssertSuccess()
21 public void onAssertFailure(IAssert assertCommand) { in onAssertFailure() argument
23 super.onAssertFailure(assertCommand); in onAssertFailure()
27 public void onAssertFailure(IAssert assertCommand, AssertionError ex) { in onAssertFailure() argument
29 super.onAssertFailure(assertCommand, ex); in onAssertFailure()
33 public void onBeforeAssert(IAssert assertCommand) { in onBeforeAssert() argument
35 super.onBeforeAssert(assertCommand); in onBeforeAssert()
39 public void onAfterAssert(IAssert assertCommand) { in onAfterAssert() argument
41 super.onAfterAssert(assertCommand); in onAfterAssert()
DSoftAssertTest.java19 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()
/external/testng/src/main/java/org/testng/asserts/
DIAssertLifecycle.java10 void executeAssert(IAssert<?> assertCommand); in executeAssert() argument
15 void onAssertSuccess(IAssert<?> assertCommand); in onAssertSuccess() argument
22 void onAssertFailure(IAssert<?> assertCommand); in onAssertFailure() argument
28 void onAssertFailure(IAssert<?> assertCommand, AssertionError ex); in onAssertFailure() argument
33 void onBeforeAssert(IAssert<?> assertCommand); in onBeforeAssert() argument
38 void onAfterAssert(IAssert<?> assertCommand); in onAfterAssert() argument
DAssertion.java12 protected void doAssert(IAssert<?> assertCommand) { in doAssert() argument
13 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() argument
30 assertCommand.doAssert(); in executeAssert()
37 public void onAssertSuccess(IAssert<?> assertCommand) { in onAssertSuccess() argument
47 public void onAssertFailure(IAssert<?> assertCommand) { in onAssertFailure() argument
[all …]