01: package test.parameters;
02:
03: import org.testng.annotations.BeforeSuite;
04: import org.testng.annotations.Parameters;
05:
06: public class SuiteSampleTest {
07:
08: @Parameters({"param"})
09: @BeforeSuite
10: public void suiteParameter(String s) {
11: ppp("PARAM:" + s);
12: }
13:
14: private void ppp(String s) {
15: System.out.println("[SuiteSampleTest] " + s);
16: }
17: }
|