20 lines
242 B
Java
Raw Normal View History

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