@@ -186,6 +186,9 @@ public void getParametersFromQueryAndUrlEncodedBodyPost() throws Exception {
186186 assertEquals ("d" , parameters .get (1 ).getValue ());
187187 }
188188
189+ /**
190+ * @throws Exception if the test fails
191+ */
189192 @ Test
190193 public void getParametersFromQueryAndUrlEncodedBodyPostWhenEncodingTypeIsMultipart () throws Exception {
191194 final URL url = new URL (URL_FIRST , "?a=b" );
@@ -206,6 +209,9 @@ public void getParametersFromQueryAndUrlEncodedBodyPostWhenEncodingTypeIsMultipa
206209 assertEquals ("d" , parameters .get (1 ).getValue ());
207210 }
208211
212+ /**
213+ * @throws Exception if the test fails
214+ */
209215 @ Test
210216 public void getParametersUrlEncodedPostNoBody () throws Exception {
211217 final URL url = new URL (URL_FIRST , "?a=b" );
@@ -223,6 +229,9 @@ public void getParametersUrlEncodedPostNoBody() throws Exception {
223229 assertEquals ("b" , parameters .get (0 ).getValue ());
224230 }
225231
232+ /**
233+ * @throws Exception if the test fails
234+ */
226235 @ Test
227236 public void getParametersTextEncodedPostNoBody () throws Exception {
228237 final URL url = new URL (URL_FIRST , "?a=b" );
@@ -240,6 +249,9 @@ public void getParametersTextEncodedPostNoBody() throws Exception {
240249 assertEquals ("b" , parameters .get (0 ).getValue ());
241250 }
242251
252+ /**
253+ * @throws Exception if the test fails
254+ */
243255 @ Test
244256 public void getParametersTextEncodedPostBody () throws Exception {
245257 final URL url = new URL (URL_FIRST , "?a=b" );
0 commit comments