Saltar al contenido

ejemplo de proveedor de datos de prueba

Ejemplo: ¿que es el proveedor de datos en testng?

DataProvider returns a single or multi-dimensional JAVA Object 
array to the test method and the test method will invoke x times 
in a (x multiply n) type of object array. For example, if the DataProvider 
returns an array of 3*2 objects, the corresponding test case will be 
invoked 3 times with 2 parameters each time.

@Test(dataProvider="myData")
    	public void testMethod(String author,String searchKey) throws InterruptedException{
    	{
        //CODES HERE
    }

@DataProvider(name="myData")
public Object[][] getDataFromDataprovider(){
    Object[][] obj = {{ "Guru99", "India" }, { "Krishna", "UK" },
    { "Bhupesh", "USA" }};
	return obj; 
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *