2015-07-24 11:32:22 +03:00
|
|
|
package com.iluwatar.lazy.loading;
|
2015-04-21 22:57:50 +03:00
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
2015-08-19 22:09:54 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Application test
|
|
|
|
*
|
|
|
|
*/
|
2015-04-21 22:57:50 +03:00
|
|
|
public class AppTest {
|
|
|
|
|
2015-11-01 21:29:13 -05:00
|
|
|
@Test
|
|
|
|
public void test() {
|
|
|
|
String[] args = {};
|
|
|
|
App.main(args);
|
|
|
|
}
|
2015-04-21 22:57:50 +03:00
|
|
|
}
|