#107 JavaDoc improvements

This commit is contained in:
Ilkka Seppala
2015-08-18 21:28:23 +03:00
parent 7d2e9fa1b4
commit 1dc2d8d0c7
4 changed files with 61 additions and 41 deletions

View File

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

View File

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

View File

@ -2,6 +2,11 @@ package com.iluwatar.async.method.invocation;
import org.junit.Test;
/**
*
* Application test
*
*/
public class AppTest {
@Test

View File

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