blob: 7b4080622a9233bcc5b86fca72164b4ca412efbb [file] [log] [blame]
package pkg;
import org.testng.annotations.Test;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
public class BTest
{
@Test
public void test()
throws InterruptedException
{
MILLISECONDS.sleep( 12_000L );
throw new RuntimeException();
}
}