20 lines
242 B
Java
20 lines
242 B
Java
|
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);
|
||
|
}
|
||
|
}
|