blob: c4a4d2bd50ff2d1b9e4f90c92d62b483adafb560 [file] [log] [blame]
package test.dependent.functionality1;
import org.testng.annotations.BeforeSuite;
public class Config {
@BeforeSuite (groups = "other")
public void beforeSuite(){
System.out.println("BeforeSuite group 'other'");
}
}