#107 Improve Private Class Data example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-21 22:38:26 +03:00
parent 2bf00c3b5e
commit c32246e41d
2 changed files with 57 additions and 48 deletions

View File

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