#107 Service Locator JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-21 22:59:59 +03:00
parent 488e5dd281
commit 743b6e69c5
3 changed files with 27 additions and 15 deletions

View File

@@ -1,14 +1,19 @@
package com.iluwatar.servicelocator;
import org.junit.Test;
import com.iluwatar.servicelocator.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}
package com.iluwatar.servicelocator;
import org.junit.Test;
import com.iluwatar.servicelocator.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}