#68: Implementation of Async Method Invocation pattern

This commit is contained in:
Tapio Rautonen
2015-07-20 22:55:39 +03:00
parent d3642cc94c
commit 3e8ef01288
8 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.iluwatar.async.method.invocation;
import org.junit.Test;
public class AppTest {
@Test
public void test() throws Exception {
String[] args = {};
App.main(args);
}
}