Skip to content

Instantly share code, notes, and snippets.

View codephilosopher's full-sized avatar
🏠
Working from home

codephilosopher

🏠
Working from home
View GitHub Profile
@sahajamit
sahajamit / testngListOfMaps_DataProvider.java
Created August 8, 2017 05:57
TestNG dataprovider example to pass List of maps as a provider
package testng;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import java.util.*;
public class testngListOfMaps_DataProvider {
@DataProvider(name = "Passing List Of Maps")
public Iterator<Object[]> createDataforTest3() {