Files
java-design-patterns/half-sync-half-async/src/test/java/com/iluwatar/halfsynchalfasync/AppTest.java

19 lines
273 B
Java
Raw Normal View History

package com.iluwatar.halfsynchalfasync;
import java.util.concurrent.ExecutionException;
import org.junit.Test;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() throws InterruptedException, ExecutionException {
App.main(null);
}
}