@@ -54,7 +54,7 @@ public void testBasicEncodeDecode() throws Exception {
54
54
final String encoded = urlCodec .encode (plain );
55
55
assertEquals ("Hello+there%21" , encoded , "Basic URL encoding test" );
56
56
assertEquals (plain , urlCodec .decode (encoded ), "Basic URL decoding test" );
57
- this . validateState (urlCodec );
57
+ validateState (urlCodec );
58
58
}
59
59
60
60
@ Test
@@ -66,7 +66,7 @@ public void testDecodeInvalid() throws Exception {
66
66
assertThrows (DecoderException .class , () -> urlCodec .decode ("%WW" ));
67
67
// Bad 2nd char after %
68
68
assertThrows (DecoderException .class , () -> urlCodec .decode ("%0W" ));
69
- this . validateState (urlCodec );
69
+ validateState (urlCodec );
70
70
}
71
71
72
72
@ Test
@@ -79,7 +79,7 @@ public void testDecodeInvalidContent() throws DecoderException {
79
79
for (int i = 0 ; i < input .length ; i ++) {
80
80
assertEquals (input [i ], output [i ]);
81
81
}
82
- this . validateState (urlCodec );
82
+ validateState (urlCodec );
83
83
}
84
84
85
85
@ Test
@@ -97,7 +97,7 @@ public void testDecodeObjects() throws Exception {
97
97
assertNull (result , "Decoding a null Object should return null" );
98
98
99
99
assertThrows (DecoderException .class , () -> urlCodec .decode (Double .valueOf (3.0d )), "Trying to url encode a Double object should cause an exception." );
100
- this . validateState (urlCodec );
100
+ validateState (urlCodec );
101
101
}
102
102
103
103
@ Test
@@ -123,15 +123,15 @@ public void testDefaultEncoding() throws Exception {
123
123
final String encoded1 = urlCodec .encode (plain , "UnicodeBig" );
124
124
final String encoded2 = urlCodec .encode (plain );
125
125
assertEquals (encoded1 , encoded2 );
126
- this . validateState (urlCodec );
126
+ validateState (urlCodec );
127
127
}
128
128
129
129
@ Test
130
130
public void testEncodeDecodeNull () throws Exception {
131
131
final URLCodec urlCodec = new URLCodec ();
132
132
assertNull (urlCodec .encode ((String ) null ), "Null string URL encoding test" );
133
133
assertNull (urlCodec .decode ((String ) null ), "Null string URL decoding test" );
134
- this . validateState (urlCodec );
134
+ validateState (urlCodec );
135
135
}
136
136
137
137
@ Test
@@ -140,7 +140,7 @@ public void testEncodeNull() throws Exception {
140
140
final byte [] plain = null ;
141
141
final byte [] encoded = urlCodec .encode (plain );
142
142
assertNull (encoded , "Encoding a null string should return null" );
143
- this . validateState (urlCodec );
143
+ validateState (urlCodec );
144
144
}
145
145
146
146
@ Test
@@ -159,7 +159,7 @@ public void testEncodeObjects() throws Exception {
159
159
assertNull (result , "Encoding a null Object should return null" );
160
160
161
161
assertThrows (EncoderException .class , () -> urlCodec .encode (Double .valueOf (3.0d )), "Trying to url encode a Double object should cause an exception." );
162
- this . validateState (urlCodec );
162
+ validateState (urlCodec );
163
163
}
164
164
165
165
@ Test
@@ -177,7 +177,7 @@ public void testEncodeUrlWithNullBitSet() throws Exception {
177
177
final String encoded = new String (URLCodec .encodeUrl (null , plain .getBytes (StandardCharsets .UTF_8 )));
178
178
assertEquals ("Hello+there%21" , encoded , "Basic URL encoding test" );
179
179
assertEquals (plain , urlCodec .decode (encoded ), "Basic URL decoding test" );
180
- this . validateState (urlCodec );
180
+ validateState (urlCodec );
181
181
}
182
182
183
183
@ Test
@@ -186,7 +186,7 @@ public void testInvalidEncoding() {
186
186
final String plain = "Hello there!" ;
187
187
assertThrows (EncoderException .class , () -> urlCodec .encode (plain ), "We set the encoding to a bogus NONSENSE value" );
188
188
assertThrows (DecoderException .class , () -> urlCodec .decode (plain ), "We set the encoding to a bogus NONSENSE value" );
189
- this . validateState (urlCodec );
189
+ validateState (urlCodec );
190
190
}
191
191
192
192
@ Test
@@ -196,7 +196,7 @@ public void testSafeCharEncodeDecode() throws Exception {
196
196
final String encoded = urlCodec .encode (plain );
197
197
assertEquals (plain , encoded , "Safe chars URL encoding test" );
198
198
assertEquals (plain , urlCodec .decode (encoded ), "Safe chars URL decoding test" );
199
- this . validateState (urlCodec );
199
+ validateState (urlCodec );
200
200
}
201
201
202
202
@ Test
@@ -206,7 +206,7 @@ public void testUnsafeEncodeDecode() throws Exception {
206
206
final String encoded = urlCodec .encode (plain );
207
207
assertEquals ("%7E%21%40%23%24%25%5E%26%28%29%2B%7B%7D%22%5C%3B%3A%60%2C%2F%5B%5D" , encoded , "Unsafe chars URL encoding test" );
208
208
assertEquals (plain , urlCodec .decode (encoded ), "Unsafe chars URL decoding test" );
209
- this . validateState (urlCodec );
209
+ validateState (urlCodec );
210
210
}
211
211
212
212
@ Test
@@ -216,14 +216,14 @@ public void testUTF8RoundTrip() throws Exception {
216
216
final String ch_msg = constructString (SWISS_GERMAN_STUFF_UNICODE );
217
217
218
218
final URLCodec urlCodec = new URLCodec ();
219
- this . validateState (urlCodec );
219
+ validateState (urlCodec );
220
220
221
221
assertEquals ("%D0%92%D1%81%D0%B5%D0%BC_%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82" , urlCodec .encode (ru_msg , CharEncoding .UTF_8 ));
222
222
assertEquals ("Gr%C3%BCezi_z%C3%A4m%C3%A4" , urlCodec .encode (ch_msg , CharEncoding .UTF_8 ));
223
223
224
224
assertEquals (ru_msg , urlCodec .decode (urlCodec .encode (ru_msg , CharEncoding .UTF_8 ), CharEncoding .UTF_8 ));
225
225
assertEquals (ch_msg , urlCodec .decode (urlCodec .encode (ch_msg , CharEncoding .UTF_8 ), CharEncoding .UTF_8 ));
226
- this . validateState (urlCodec );
226
+ validateState (urlCodec );
227
227
}
228
228
229
229
private void validateState (final URLCodec urlCodec ) {
0 commit comments