@@ -71,8 +71,8 @@ public static void fail() {
71
71
}
72
72
73
73
/**
74
- * Asserts that two objects are equal. If they are not an AssertionError is thrown with the
75
- * given message.
74
+ * Asserts that two objects are equal. If they are not an AssertionError is thrown with the given
75
+ * message.
76
76
*
77
77
* @param message The message
78
78
* @param expected The expected value
@@ -126,8 +126,8 @@ public static void assertEquals(String expected, String actual) {
126
126
}
127
127
128
128
/**
129
- * Asserts that two doubles are equal concerning a delta. If they are not an AssertionError
130
- * is thrown with the given message. If the expected value is infinity then the delta value is
129
+ * Asserts that two doubles are equal concerning a delta. If they are not an AssertionError is
130
+ * thrown with the given message. If the expected value is infinity then the delta value is
131
131
* ignored.
132
132
*
133
133
* @param message The message
@@ -162,8 +162,8 @@ public static void assertEquals(double expected, double actual, double delta) {
162
162
}
163
163
164
164
/**
165
- * Asserts that two floats are equal concerning a delta. If they are not an AssertionError
166
- * is thrown with the given message. If the expected value is infinity then the delta value is
165
+ * Asserts that two floats are equal concerning a delta. If they are not an AssertionError is
166
+ * thrown with the given message. If the expected value is infinity then the delta value is
167
167
* ignored.
168
168
*
169
169
* @param message The message
@@ -197,8 +197,8 @@ public static void assertEquals(float expected, float actual, float delta) {
197
197
}
198
198
199
199
/**
200
- * Asserts that two longs are equal. If they are not an AssertionError is thrown with the
201
- * given message.
200
+ * Asserts that two longs are equal. If they are not an AssertionError is thrown with the given
201
+ * message.
202
202
*
203
203
* @param message The message
204
204
* @param expected The expected value
@@ -219,8 +219,8 @@ public static void assertEquals(long expected, long actual) {
219
219
}
220
220
221
221
/**
222
- * Asserts that two booleans are equal. If they are not an AssertionError is thrown with the
223
- * given message.
222
+ * Asserts that two booleans are equal. If they are not an AssertionError is thrown with the given
223
+ * message.
224
224
*
225
225
* @param message The message
226
226
* @param expected The expected value
@@ -241,8 +241,8 @@ public static void assertEquals(boolean expected, boolean actual) {
241
241
}
242
242
243
243
/**
244
- * Asserts that two bytes are equal. If they are not an AssertionError is thrown with the
245
- * given message.
244
+ * Asserts that two bytes are equal. If they are not an AssertionError is thrown with the given
245
+ * message.
246
246
*
247
247
* @param message The message
248
248
* @param expected The expected value
@@ -263,8 +263,8 @@ public static void assertEquals(byte expected, byte actual) {
263
263
}
264
264
265
265
/**
266
- * Asserts that two chars are equal. If they are not an AssertionError is thrown with the
267
- * given message.
266
+ * Asserts that two chars are equal. If they are not an AssertionError is thrown with the given
267
+ * message.
268
268
*
269
269
* @param message The message
270
270
* @param expected The expected value
@@ -285,8 +285,8 @@ public static void assertEquals(char expected, char actual) {
285
285
}
286
286
287
287
/**
288
- * Asserts that two shorts are equal. If they are not an AssertionError is thrown with the
289
- * given message.
288
+ * Asserts that two shorts are equal. If they are not an AssertionError is thrown with the given
289
+ * message.
290
290
*
291
291
* @param message The message
292
292
* @param expected The expected value
@@ -307,8 +307,8 @@ public static void assertEquals(short expected, short actual) {
307
307
}
308
308
309
309
/**
310
- * Asserts that two ints are equal. If they are not an AssertionError is thrown with the
311
- * given message.
310
+ * Asserts that two ints are equal. If they are not an AssertionError is thrown with the given
311
+ * message.
312
312
*
313
313
* @param message The message
314
314
* @param expected The expected value
@@ -338,8 +338,7 @@ public static void assertNotNull(Object object) {
338
338
}
339
339
340
340
/**
341
- * Asserts that an object isn't null. If it is an AssertionError is thrown with the given
342
- * message.
341
+ * Asserts that an object isn't null. If it is an AssertionError is thrown with the given message.
343
342
*
344
343
* @param message The message
345
344
* @param object The actual object
@@ -369,8 +368,8 @@ public static void assertNull(String message, Object object) {
369
368
}
370
369
371
370
/**
372
- * Asserts that two objects refer to the same object. If they are not an AssertionError is
373
- * thrown with the given message.
371
+ * Asserts that two objects refer to the same object. If they are not an AssertionError is thrown
372
+ * with the given message.
374
373
*
375
374
* @param message The message
376
375
* @param expected The expected value
@@ -384,8 +383,8 @@ public static void assertSame(String message, Object expected, Object actual) {
384
383
}
385
384
386
385
/**
387
- * Asserts that two objects refer to the same object. If they are not the same an
388
- * AssertionError is thrown.
386
+ * Asserts that two objects refer to the same object. If they are not the same an AssertionError
387
+ * is thrown.
389
388
*
390
389
* @param expected The expected value
391
390
* @param actual The actual value
@@ -395,8 +394,8 @@ public static void assertSame(Object expected, Object actual) {
395
394
}
396
395
397
396
/**
398
- * Asserts that two objects refer to the same object. If they are not an AssertionError is
399
- * thrown with the given message.
397
+ * Asserts that two objects refer to the same object. If they are not an AssertionError is thrown
398
+ * with the given message.
400
399
*
401
400
* @param message The message
402
401
* @param expected The expected value
@@ -409,8 +408,8 @@ public static void assertNotSame(String message, Object expected, Object actual)
409
408
}
410
409
411
410
/**
412
- * Asserts that two objects refer to the same object. If they are not the same an
413
- * AssertionError is thrown.
411
+ * Asserts that two objects refer to the same object. If they are not the same an AssertionError
412
+ * is thrown.
414
413
*
415
414
* @param expected The expected value
416
415
* @param actual The actual value
0 commit comments