blob: 0fc3017adcf0fdf2927a5414fa826cee224ca13f [file] [log] [blame]
package test.tmp.p2;
import org.testng.annotations.Test;
import static org.testng.AssertJUnit.assertNotNull;
public class ServiceTest {
@Test(groups = {"group1"})
public void service() {
assertNotNull(null);
}
}