#107 JavaDoc for Servant

This commit is contained in:
Ilkka Seppala
2015-08-21 22:54:18 +03:00
parent ace8b3e22f
commit 1b2a1fd19f
6 changed files with 47 additions and 14 deletions

View File

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