14 lines
238 B
Java
14 lines
238 B
Java
|
package com.iluwatar.halfsynchalfasync;
|
||
|
|
||
|
import java.util.concurrent.ExecutionException;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
|
||
|
public class AppTest {
|
||
|
|
||
|
@Test
|
||
|
public void test() throws InterruptedException, ExecutionException {
|
||
|
App.main(null);
|
||
|
}
|
||
|
}
|