2015-07-25 15:58:12 +05:30
|
|
|
package com.iluwatar.halfsynchalfasync;
|
|
|
|
|
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
2015-08-18 22:58:00 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Application test
|
|
|
|
*
|
|
|
|
*/
|
2015-07-25 15:58:12 +05:30
|
|
|
public class AppTest {
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test() throws InterruptedException, ExecutionException {
|
|
|
|
App.main(null);
|
|
|
|
}
|
|
|
|
}
|