aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/java-native/src/test/java/com/example/myproject/TestSleep.java
blob: 21e2271bd1f26206579e6ecedbf06ce1eccf6875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.example.myproject;

import org.junit.Test;

/** Contains a single test that just sleeps for 15 seconds and then succeeds. */
public class TestSleep {
  @Test
  public void testSleep() throws Exception {
    // Sleep for 15 seconds.
    Thread.sleep(15 * 1000);
  }
}