#107 JavaDoc for Proxy example

This commit is contained in:
Ilkka Seppala
2015-08-21 22:47:39 +03:00
parent 0db6581cfd
commit 4d08d16bb1
4 changed files with 83 additions and 73 deletions

View File

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