blob: 0e99270132e0eeba56fd79bd71a9d20fb2efb6f6 [file] [log] [blame]
package pkg;
import org.junit.jupiter.api.Test;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
public class DTest
{
@Test
public void test()
throws InterruptedException
{
MILLISECONDS.sleep( 1000L );
}
}