import org.junit.jupiter.api.Test;

class ManualWaitTest {
    @Test
    void threadSleepWait() throws InterruptedException {
        Thread.sleep(1500);
    }
}
