#107 Interpreter example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 23:10:08 +03:00
parent 0d8b3c9935
commit 5831d3239d
7 changed files with 220 additions and 186 deletions

View File

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