16 lines
219 B
Java
Raw Normal View History

2015-04-28 22:53:37 +03:00
package com.iluwatar;
2015-04-29 18:50:08 +03:00
import java.io.IOException;
2015-04-28 22:53:37 +03:00
import org.junit.Test;
public class AppTest {
@Test
2015-04-29 18:50:08 +03:00
public void test() throws ClassNotFoundException, IOException {
2015-04-28 22:53:37 +03:00
String[] args = {};
App.main(args);
}
}