I am using a dataProvider method and forming a URL using this dataprovider and should pass this formed URL to next dataprovider . Can this dataprovider Test Method be ignored in the TestNG - test execution reports?
The first DataProvider A should be ignored in the TestNG - test execution report
@Test(dataprovider = "A")
public void getURL(String URL){
finalURL = URL +apiURL;
}
@Test(dataprovider ="B")
public void getStatus(){
closeableHttpResponse = restClient.get(finalURL, headerFormation());
}