1.5. Example of IConfigurationListener
is the listener interface for events related to configuration methods.
In the below test class , we have a , and a method.
We can use annotation to specify the listener class. Note that this is another way of providing listeners to TestNG other than the way.
We can use annotation to specify the listener class. Note that this is another way of providing listeners to TestNG other than the way.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MyConfigListenerExample: | |
package com.IConfigurationListener; | |
import java.util.Arrays; | |
import org.testng.TestNG; | |
import org.testng.annotations.AfterSuite; | |
import org.testng.annotations.BeforeSuite; | |
import org.testng.annotations.Listeners; | |
import org.testng.annotations.Test; | |
@Listeners(value=MyConfigListener.class) | |
public class MyConfigListenerExample { | |
@BeforeSuite | |
public void beforeSuite() { | |
System.out.println("in before suite mthods"); | |
} | |
@Test | |
public void testcase1() { | |
System.out.println("test method testcase1"); | |
} | |
@AfterSuite | |
public void afterSuite() { | |
System.out.println("in after suite method"); | |
} | |
public static void main(String[] args) { | |
TestNG testNG = new TestNG(); | |
testNG.setTestSuites(Arrays.asList("/yourpath/configurationListenerTestng.xml")); | |
testNG.run(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MyConfigListener: | |
package com.IConfigurationListener; | |
import org.testng.IConfigurationListener2; | |
import org.testng.ITestResult; | |
public class MyConfigListener implements IConfigurationListener2 { | |
@Override | |
public void onConfigurationSuccess(ITestResult tr) { | |
System.out.println("Method - on configuration success"); | |
} | |
@Override | |
public void onConfigurationFailure(ITestResult tr) { | |
System.out.println("Method -- on configuration failure"); | |
} | |
@Override | |
public void onConfigurationSkip(ITestResult tr) { | |
System.out.println("Method -- on configuration skip"); | |
} | |
@Override | |
public void beforeConfiguration(ITestResult tr) { | |
System.out.println("This is called before the configuration method is invoked"); | |
} | |
} | |
// Right click on the MyConfigListenerExample and run as TestNG Suite. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Output: | |
[TestNG] Running: | |
/private/var/folders/1q/8clrsf517cz46g_lmr_jr4nw0000gn/T/testng-eclipse--1710078531/testng-customsuite.xml | |
This is called before the configuration method is invoked | |
in before suite | |
Method - on configuration success | |
test method testcase1 | |
PASSED: testcase1 | |
=============================================== | |
Default test | |
Tests run: 1, Failures: 0, Skips: 0 | |
=============================================== | |
This is called before the configuration method is invoked | |
in after suite | |
Method - on configuration success | |
=============================================== | |
Default suite | |
Total tests run: 1, Failures: 0, Skips: 0 | |
=============================================== | |
[TestNG] Time taken by org.testng.reporters.SuiteHTMLReporter@39ed3c8d: 24 ms | |
[TestNG] Time taken by org.testng.reporters.JUnitReportReporter@48cf768c: 5 ms | |
[TestNG] Time taken by org.testng.reporters.jq.Main@2d363fb3: 37 ms | |
[TestNG] Time taken by [FailedReporter passed=0 failed=0 skipped=0]: 3 ms | |
[TestNG] Time taken by org.testng.reporters.XMLReporter@16b3fc9e: 5 ms | |
[TestNG] Time taken by org.testng.reporters.EmailableReporter2@1e81f4dc: 6 ms | |
From the output, we can see that beforeConfiguration is called before the invocation of the configuration method.onConfigurationSuccess gets called on the success of a configuration method. |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.