blob: 170c55df510c363d173fb451f4e306e1db0bbf2f [file] [log] [blame]
import org.junit.Test;
public class Module1Test
{
@Test
public void test() throws Exception
{
Thread.sleep( 1000L );
System.out.println( "Module1" );
throw new RuntimeException();
}
}