Index: /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java	(revision 14190)
+++ /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java	(revision 14191)
@@ -39,4 +39,7 @@
 public class HttpClientTest {
 
+    /**
+     * Setup test
+     */
     @Rule
     @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
@@ -73,4 +76,8 @@
     }
 
+    /**
+     * Test constructor, getters and setters
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testConstructorGetterSetter() throws IOException {
@@ -90,4 +97,8 @@
     }
 
+    /**
+     * Test HTTP GET
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testGet() throws IOException {
@@ -109,4 +120,8 @@
     }
 
+    /**
+     * Test JOSM User-Agent
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testUserAgent() throws IOException {
@@ -117,4 +132,8 @@
     }
 
+    /**
+     * Test UTF-8 encoded content
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testFetchUtf8Content() throws IOException {
@@ -126,4 +145,8 @@
     }
 
+    /**
+     * Test HTTP POST
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testPost() throws IOException {
@@ -169,4 +192,8 @@
     }
 
+    /**
+     * Test maximum number of redirections.
+     * @throws IOException if an I/O error occurs
+     */
     @Test(expected = IOException.class)
     public void testTooMuchRedirects() throws IOException {
@@ -174,4 +201,8 @@
     }
 
+    /**
+     * Test HTTP error 418
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testHttp418() throws IOException {
@@ -186,4 +217,8 @@
     }
 
+    /**
+     * Test HTTP error 401
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testHttp401() throws IOException {
@@ -198,4 +233,8 @@
     }
 
+    /**
+     * Test HTTP error 402
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testHttp402() throws IOException {
@@ -210,4 +249,8 @@
     }
 
+    /**
+     * Test HTTP error 403
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testHttp403() throws IOException {
@@ -222,4 +265,8 @@
     }
 
+    /**
+     * Test HTTP error 404
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testHttp404() throws IOException {
@@ -234,4 +281,8 @@
     }
 
+    /**
+     * Test HTTP error 500
+     * @throws IOException if an I/O error occurs
+     */
     @Test
     public void testHttp500() throws IOException {
