org.testng.annotations
Annotation Type Parameters


@Retention(value=RUNTIME)
@Target(value={METHOD,CONSTRUCTOR,TYPE})
public @interface Parameters

Describes how to pass parameters to a @Test method.

Author:
Cedric Beust

Optional Element Summary
 String[] value
          The list of variables used to fill the parameters of this method.
 

value

public abstract String[] value
The list of variables used to fill the parameters of this method. These variables must be defined in your testng.xml file. For example

@Parameters({ "xmlPath" })
@Test
public void verifyXmlFile(String path) { ... }

and in testng.xml:

<parameter name="xmlPath" value="account.xml" />

Default:
{}


Copyright © 2011. All Rights Reserved.