Package io.trino.testng.services
Class ProgressLoggingListener
- java.lang.Object
-
- io.trino.testng.services.ProgressLoggingListener
-
- All Implemented Interfaces:
org.testng.IClassListener,org.testng.ITestListener,org.testng.ITestNGListener
public class ProgressLoggingListener extends Object implements org.testng.IClassListener, org.testng.ITestListener
-
-
Constructor Summary
Constructors Constructor Description ProgressLoggingListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonAfterClass(org.testng.ITestClass testClass)voidonBeforeClass(org.testng.ITestClass testClass)voidonFinish(org.testng.ITestContext context)voidonStart(org.testng.ITestContext context)voidonTestFailedButWithinSuccessPercentage(org.testng.ITestResult testCase)voidonTestFailure(org.testng.ITestResult testCase)voidonTestSkipped(org.testng.ITestResult testCase)voidonTestStart(org.testng.ITestResult testCase)voidonTestSuccess(org.testng.ITestResult testCase)
-
-
-
Method Detail
-
onStart
public void onStart(org.testng.ITestContext context)
- Specified by:
onStartin interfaceorg.testng.ITestListener
-
onTestStart
public void onTestStart(org.testng.ITestResult testCase)
- Specified by:
onTestStartin interfaceorg.testng.ITestListener
-
onTestSuccess
public void onTestSuccess(org.testng.ITestResult testCase)
- Specified by:
onTestSuccessin interfaceorg.testng.ITestListener
-
onTestFailure
public void onTestFailure(org.testng.ITestResult testCase)
- Specified by:
onTestFailurein interfaceorg.testng.ITestListener
-
onTestSkipped
public void onTestSkipped(org.testng.ITestResult testCase)
- Specified by:
onTestSkippedin interfaceorg.testng.ITestListener
-
onTestFailedButWithinSuccessPercentage
public void onTestFailedButWithinSuccessPercentage(org.testng.ITestResult testCase)
- Specified by:
onTestFailedButWithinSuccessPercentagein interfaceorg.testng.ITestListener
-
onFinish
public void onFinish(org.testng.ITestContext context)
- Specified by:
onFinishin interfaceorg.testng.ITestListener
-
onBeforeClass
public void onBeforeClass(org.testng.ITestClass testClass)
- Specified by:
onBeforeClassin interfaceorg.testng.IClassListener
-
onAfterClass
public void onAfterClass(org.testng.ITestClass testClass)
- Specified by:
onAfterClassin interfaceorg.testng.IClassListener
-
-