#107 JavaDoc for Strategy

This commit is contained in:
Ilkka Seppala
2015-08-21 23:17:25 +03:00
parent ed416ac759
commit 934f99e2a9
2 changed files with 45 additions and 36 deletions

View File

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