#107 Improve JavaDoc for Observer example

This commit is contained in:
Ilkka Seppala
2015-08-21 22:28:51 +03:00
parent 86c68f96e3
commit 520f81d62e
11 changed files with 208 additions and 156 deletions

View File

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