Skip to content

Commit

Permalink
Merge pull request #1059 from rhusar/test-listener-cleanup
Browse files Browse the repository at this point in the history
ITestListener cleanup: remove redundant identical default method impl…
  • Loading branch information
Ladicek authored Oct 15, 2024
2 parents d85d79e + 3a83154 commit d5a2a57
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.smallrye.faulttolerance.tck;

import org.jboss.logging.Logger;
import org.testng.ITestContext;
import org.testng.ITestListener;
import org.testng.ITestResult;

Expand All @@ -27,16 +26,4 @@ public void onTestFailure(ITestResult result) {
public void onTestSkipped(ITestResult result) {
LOG.info("Skipped " + result.getTestClass().getName() + "#" + result.getMethod().getMethodName());
}

@Override
public void onTestFailedButWithinSuccessPercentage(ITestResult result) {
}

@Override
public void onStart(ITestContext context) {
}

@Override
public void onFinish(ITestContext context) {
}
}

0 comments on commit d5a2a57

Please sign in to comment.