Package testUtils
Class TestResultLoggerListener
java.lang.Object
testUtils.TestResultLoggerListener
- All Implemented Interfaces:
org.testng.ITestListener,org.testng.ITestNGListener
TestNG listener that logs test execution events using Log4j2.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidonTestFailure(org.testng.ITestResult result) Called when a test method fails.voidonTestSkipped(org.testng.ITestResult result) Called when a test method is skipped.voidonTestStart(org.testng.ITestResult result) Called when a test method starts.voidonTestSuccess(org.testng.ITestResult result) Called when a test method passes.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.testng.ITestListener
onFinish, onStart, onTestFailedButWithinSuccessPercentage, onTestFailedWithTimeoutMethods inherited from interface org.testng.ITestNGListener
isEnabled
-
Constructor Details
-
TestResultLoggerListener
public TestResultLoggerListener()
-
-
Method Details
-
onTestStart
public void onTestStart(org.testng.ITestResult result) Called when a test method starts. Logs the method name and parameters.- Specified by:
onTestStartin interfaceorg.testng.ITestListener- Parameters:
result- the test result
-
onTestSuccess
public void onTestSuccess(org.testng.ITestResult result) Called when a test method passes. Logs the method name.- Specified by:
onTestSuccessin interfaceorg.testng.ITestListener- Parameters:
result- the test result
-
onTestFailure
public void onTestFailure(org.testng.ITestResult result) Called when a test method fails. Logs the method name and throwable.- Specified by:
onTestFailurein interfaceorg.testng.ITestListener- Parameters:
result- the test result
-
onTestSkipped
public void onTestSkipped(org.testng.ITestResult result) Called when a test method is skipped. Logs the method name.- Specified by:
onTestSkippedin interfaceorg.testng.ITestListener- Parameters:
result- the test result
-