Added example code for Execute Around idiom.

This commit is contained in:
Ilkka Seppala
2015-03-29 21:25:13 +03:00
parent eee2160435
commit 027fd9934b
6 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.iluwatar;
import java.io.IOException;
import org.junit.Test;
/**
*
* Tests execute-around example.
*
*/
public class AppTest {
@Test
public void test() throws IOException {
String[] args = {};
App.main(args);
}
}