#107 Chain example JavaDoc improvements

This commit is contained in:
Ilkka Seppala
2015-08-18 21:55:25 +03:00
parent b3b6479f6f
commit fa0acb4366
9 changed files with 229 additions and 190 deletions
@@ -1,14 +1,19 @@
package com.iluwatar.chain;
import org.junit.Test;
import com.iluwatar.chain.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}
package com.iluwatar.chain;
import org.junit.Test;
import com.iluwatar.chain.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}