#107 JavaDoc for State pattern

This commit is contained in:
Ilkka Seppala
2015-08-21 23:13:31 +03:00
parent cec8e4f168
commit 9a866dfe34
2 changed files with 43 additions and 38 deletions

View File

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