#107 Template Method JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-21 23:19:55 +03:00
parent 934f99e2a9
commit fde7f71704
5 changed files with 118 additions and 109 deletions

View File

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