15 lines
179 B
Java
Raw Normal View History

2015-04-23 22:35:58 +03:00
package com.iluwatar.app;
import org.junit.Test;
2015-04-23 22:35:58 +03:00
import com.iluwatar.app.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}