#107 Composite example JavaDoc

This commit is contained in:
Ilkka Seppala
2015-08-18 22:03:41 +03:00
parent 98abe5b5b6
commit a7d25e0485
6 changed files with 188 additions and 159 deletions

View File

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