#107 Improvements for Command example JavaDocs

This commit is contained in:
Ilkka Seppala
2015-08-18 22:01:08 +03:00
parent fa0acb4366
commit 98abe5b5b6
2 changed files with 26 additions and 17 deletions
@@ -1,14 +1,19 @@
package com.iluwatar.command;
import org.junit.Test;
import com.iluwatar.command.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}
package com.iluwatar.command;
import org.junit.Test;
import com.iluwatar.command.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}