#107 JavaDoc improvements for the Builder example

This commit is contained in:
Ilkka Seppala
2015-08-18 21:37:07 +03:00
parent 1dc2d8d0c7
commit 81dda94abd
8 changed files with 157 additions and 123 deletions

View File

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