#107 Iterator example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 23:14:04 +03:00
parent 5831d3239d
commit 0d2e033df6
7 changed files with 212 additions and 188 deletions

View File

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