I just googled but didn't get any idea about that how dataprovider publish the test data into default TestNG report. If anybody expert about the internal logic of dataprovider please let me know. It would be appreciate if there is any document to understand this better.
I just created a custom annotation which I want to publish into default testNG HTML report like DataProvider did. I have been tried the below code so far.
The below class will create annotation:
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD })
public @interface Greet {
/**
* @return - The name of the person to greet.
*/
String name() default "";
}
The below class will get data from user:
public class TestCase1 {
@Test
@DataPublish(name="First Test method_1")
public static void test1() throws Exception {
try {
Assert.assertTrue(true);
}
catch (Exception ex) {
ex.printStackTrace();
}
}
I would like to print that annotation value in testNG default HTML report.
Your dataprovider can provide data to any of the class or methods ,I am sure there are examples for that out there. You can add your data in the below class. I have explained the custom reporting part below.
With your
customReport
You'd have to implementIReporter
, extendTestListenerAdapter
and overridegenerateReport
method if you want to implement a customTestHTMLReporter
. For other reporters you may have to do things a bit differently but the concept will remain the same. You'd achieve custom 'TestHTMLReporter' like below .Create a
CustomReport.java
file in your project and copy-paste the whole content ofTestHTMLReporter.java
, change the name of file ingetOutputFile
method and it would look like belowMake sure all your imports are in place from
TestHTMLReporter.java
Now, in this file change as per your requirement . For ex: if you'd like to add the end time of each of the test then at the correct place ingenerateTable
method add the below snippetThen you'll get like below
Now, You'll get two reports one with default and the other with your file name. The only thing now remains is switching off the default reporting listeners, so you get only one report. For that you can follow this or you may search for solutions. Hope this helps