Files
java-design-patterns/half-sync-half-async/src/test/java/com/iluwatar/halfsynchalfasync/AppTest.java
T
2015-11-01 21:29:13 -05:00

19 lines
278 B
Java

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);
}
}