blob: 6cd8516b92516fe875e52260dbcb6847e818de28 [file] [log] [blame]
package pkg;
import org.testng.annotations.Test;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
public class ATest
{
@Test
public void someMethod()
throws InterruptedException
{
MILLISECONDS.sleep( 4_800L );
throw new RuntimeException( "assert \"foo\" == \"bar\"\n"
+ " |\n"
+ " false" );
}
}