All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.javasbar.framework.testng.dpextension.DataProviderArguments Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.3.0
Show newest version
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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy