#107 JavaDoc improvements

This commit is contained in:
Ilkka Seppala
2015-08-18 21:28:23 +03:00
parent 7d2e9fa1b4
commit 1dc2d8d0c7
4 changed files with 61 additions and 41 deletions

View File

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