com.javasbar.framework.testng.dpextension.DataProviderArguments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DolphinNG Show documentation
Show all versions of DolphinNG Show documentation
DolphinNG provides set of very useful addons for testNG. Most important features that it supports are
condensed smart reports, auto creation of jira ticets for test failures, linking test fails to jira tickets,
progress reporting during test runs.
package com.javasbar.framework.testng.dpextension;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Annotation for feeding arguments to methods conforming to the "@DataProvider"
* annotation type.
*
* @author jharen
* @see http://www.lysergicjava.com/?p=165
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface DataProviderArguments
{
/**
* String array of key-value pairs fed to a dynamic data provider. Should be
* in the form of key=value, e.g.,
* args={"foo=bar", "biz=baz"}
*/
String[] value();
}