#107 Improve JavaDoc for Visitor example

This commit is contained in:
Ilkka Seppala
2015-08-21 23:27:25 +03:00
parent 35e1afd7dc
commit d220a0753a
2 changed files with 50 additions and 41 deletions
@@ -1,14 +1,19 @@
package com.iluwatar.visitor;
import org.junit.Test;
import com.iluwatar.visitor.App;
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}
package com.iluwatar.visitor;
import org.junit.Test;
import com.iluwatar.visitor.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
}