20 lines
232 B
Java
Raw Normal View History

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