Skip to content

Commit 1dc2d8d

Browse files
committed
iluwatar#107 JavaDoc improvements
1 parent 7d2e9fa commit 1dc2d8d

File tree

4 files changed

+61
-41
lines changed
  • abstract-factory/src/test/java/com/iluwatar/abstractfactory
  • adapter/src/test/java/com/iluwatar/adapter
  • async-method-invocation/src/test/java/com/iluwatar/async/method/invocation
  • bridge/src/test/java/com/iluwatar/bridge

4 files changed

+61
-41
lines changed
Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1-
package com.iluwatar.abstractfactory;
2-
import org.junit.Test;
3-
4-
import com.iluwatar.abstractfactory.App;
5-
6-
public class AppTest {
7-
8-
@Test
9-
public void test() {
10-
String[] args = {};
11-
App.main(args);
12-
}
13-
}
1+
package com.iluwatar.abstractfactory;
2+
import org.junit.Test;
3+
4+
import com.iluwatar.abstractfactory.App;
5+
6+
/**
7+
*
8+
* Application test
9+
*
10+
*/
11+
public class AppTest {
12+
13+
@Test
14+
public void test() {
15+
String[] args = {};
16+
App.main(args);
17+
}
18+
}
Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
package com.iluwatar.adapter;
2-
3-
import org.junit.Test;
4-
5-
import com.iluwatar.adapter.App;
6-
7-
public class AppTest {
8-
9-
@Test
10-
public void test() {
11-
String[] args = {};
12-
App.main(args);
13-
}
14-
}
1+
package com.iluwatar.adapter;
2+
3+
import org.junit.Test;
4+
5+
import com.iluwatar.adapter.App;
6+
7+
/**
8+
*
9+
* Application test
10+
*
11+
*/
12+
public class AppTest {
13+
14+
@Test
15+
public void test() {
16+
String[] args = {};
17+
App.main(args);
18+
}
19+
}

async-method-invocation/src/test/java/com/iluwatar/async/method/invocation/AppTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
import org.junit.Test;
44

5+
/**
6+
*
7+
* Application test
8+
*
9+
*/
510
public class AppTest {
611

712
@Test
Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
package com.iluwatar.bridge;
2-
3-
import org.junit.Test;
4-
5-
import com.iluwatar.bridge.App;
6-
7-
public class AppTest {
8-
9-
@Test
10-
public void test() {
11-
String[] args = {};
12-
App.main(args);
13-
}
14-
}
1+
package com.iluwatar.bridge;
2+
3+
import org.junit.Test;
4+
5+
import com.iluwatar.bridge.App;
6+
7+
/**
8+
*
9+
* Application test
10+
*
11+
*/
12+
public class AppTest {
13+
14+
@Test
15+
public void test() {
16+
String[] args = {};
17+
App.main(args);
18+
}
19+
}

0 commit comments

Comments
 (0)