Skip to content

Instantly share code, notes, and snippets.

@santhoshv339
santhoshv339 / FactoryAndDataProvider.java
Created November 21, 2016 13:38
Using Factory and Data provider with Test NG
package com.demo.test;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Factory;
import org.testng.annotations.Test;
public class FactoryAndDataProvider {
private String Source;
private String Desination;
@Factory(dataProvider = "SearchProvider")