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