@@ -234,59 +234,58 @@ public static void assertSame(Object lhs, Object rhs, String msg) {
234
234
}
235
235
236
236
/**
237
- * Asserts that {@code lhs} is the same byte array as {@code rhs }.
237
+ * Asserts that {@code actual} has the same content as {@code expected }.
238
238
*
239
- * @param lhs The left hand side of the comparison.
240
- * @param rhs The right hand side of the comparison.
239
+ * @param expected The expected value
240
+ * @param actual The actual value
241
241
* @throws RuntimeException if the assertion is not true.
242
242
* @see #assertEqualsByteArray(byte[], byte[], String)
243
243
*/
244
- public static void assertEqualsByteArray (byte [] lhs , byte [] rhs ) {
245
- assertEqualsByteArray (lhs , rhs , null );
244
+ public static void assertEqualsByteArray (byte [] expected , byte [] actual ) {
245
+ assertEqualsByteArray (expected , actual , null );
246
246
}
247
247
248
248
/**
249
- * Asserts that {@code lhs} is not the same byte array as {@code rhs }.
249
+ * Asserts that {@code actual} does not have the same content as {@code unexpected }.
250
250
*
251
- * @param lhs The left hand side of the comparison.
252
- * @param rhs The right hand side of the comparison.
251
+ * @param unexpected The unexpected value
252
+ * @param actual The actual value
253
253
* @throws RuntimeException if the assertion is not true.
254
254
* @see #assertNotEqualsByteArray(byte[], byte[], String)
255
255
*/
256
- public static void assertNotEqualsByteArray (byte [] lhs , byte [] rhs ) {
257
- assertNotEqualsByteArray (lhs , rhs , null );
256
+ public static void assertNotEqualsByteArray (byte [] unexpected , byte [] actual ) {
257
+ assertNotEqualsByteArray (unexpected , actual , null );
258
258
}
259
259
260
260
/**
261
- * Asserts that {@code lhs } is the same byte array as {@code rhs }.
261
+ * Asserts that {@code actual } is the same byte array as {@code expected }.
262
262
*
263
- * @param lhs The left hand side of the comparison.
264
- * @param rhs The right hand side of the comparison.
263
+ * @param expected The expected value
264
+ * @param actual The actual value
265
265
* @param msg A description of the assumption; {@code null} for a default message.
266
266
* @throws RuntimeException if the assertion is not true.
267
267
*/
268
- public static void assertEqualsByteArray (byte [] lhs , byte [] rhs , String msg ) {
269
- if (!Arrays .equals (lhs , rhs )) {
268
+ public static void assertEqualsByteArray (byte [] expected , byte [] actual , String msg ) {
269
+ if (!Arrays .equals (expected , actual )) {
270
270
msg = Objects .toString (msg , "assertEqualsByteArray" )
271
- + ": expected " + HexFormat .of ().formatHex (lhs )
272
- + " to equal " + HexFormat .of ().formatHex (rhs );
271
+ + ": expected " + HexFormat .of ().formatHex (expected )
272
+ + " but was " + HexFormat .of ().formatHex (actual );
273
273
fail (msg );
274
274
}
275
275
}
276
276
277
277
/**
278
- * Asserts that {@code lhs } is not the same byte array as {@code rhs }.
278
+ * Asserts that {@code actual } is not the same byte array as {@code unexpected }.
279
279
*
280
- * @param lhs The left hand side of the comparison.
281
- * @param rhs The right hand side of the comparison.
280
+ * @param unexpected The unexpected value
281
+ * @param actual The actual value
282
282
* @param msg A description of the assumption; {@code null} for a default message.
283
283
* @throws RuntimeException if the assertion is not true.
284
284
*/
285
- public static void assertNotEqualsByteArray (byte [] lhs , byte [] rhs , String msg ) {
286
- if (Arrays .equals (lhs , rhs )) {
285
+ public static void assertNotEqualsByteArray (byte [] unexpected , byte [] actual , String msg ) {
286
+ if (Arrays .equals (unexpected , actual )) {
287
287
msg = Objects .toString (msg , "assertNotEqualsByteArray" )
288
- + ": expected " + HexFormat .of ().formatHex (lhs )
289
- + " to not equal " + HexFormat .of ().formatHex (rhs );
288
+ + ": expected not equals but was " + HexFormat .of ().formatHex (actual );
290
289
fail (msg );
291
290
}
292
291
}
@@ -404,50 +403,49 @@ public static <T extends Comparable<T>> void assertGreaterThan(T lhs, T rhs, Str
404
403
/**
405
404
* Shorthand for {@link #assertNotEquals(Object, Object)}.
406
405
*
407
- * @param lhs The left hand side of the comparison.
408
- * @param rhs The right hand side of the comparison.
406
+ * @param unexpected The unexpected value
407
+ * @param actual The actual value
409
408
* @see #assertNotEquals(Object, Object)
410
409
*/
411
- public static void assertNE (Object lhs , Object rhs ) {
412
- assertNotEquals (lhs , rhs );
410
+ public static void assertNE (Object unexpected , Object actual ) {
411
+ assertNotEquals (unexpected , actual );
413
412
}
414
413
415
414
/**
416
415
* Shorthand for {@link #assertNotEquals(Object, Object, String)}.
417
416
*
418
- * @param lhs The left hand side of the comparison.
419
- * @param rhs The right hand side of the comparison.
417
+ * @param unexpected The unexpected value
418
+ * @param actual The actual value
420
419
* @param msg A description of the assumption; {@code null} for a default message.
421
420
* @see #assertNotEquals(Object, Object, String)
422
421
*/
423
- public static void assertNE (Object lhs , Object rhs , String msg ) {
424
- assertNotEquals (lhs , rhs , msg );
422
+ public static void assertNE (Object unexpected , Object actual , String msg ) {
423
+ assertNotEquals (unexpected , actual , msg );
425
424
}
426
425
427
426
/**
428
427
* Calls {@link #assertNotEquals(Object, Object, String)} with a default message.
429
428
*
430
- * @param lhs The left hand side of the comparison.
431
- * @param rhs The right hand side of the comparison.
429
+ * @param unexpected The unexpected value
430
+ * @param actual The actual value
432
431
* @see #assertNotEquals(Object, Object, String)
433
432
*/
434
- public static void assertNotEquals (Object lhs , Object rhs ) {
435
- assertNotEquals (lhs , rhs , null );
433
+ public static void assertNotEquals (Object unexpected , Object actual ) {
434
+ assertNotEquals (unexpected , actual , null );
436
435
}
437
436
438
437
/**
439
- * Asserts that {@code lhs } is not equal to {@code rhs }.
438
+ * Asserts that {@code actual } is not equal to {@code unexpected }.
440
439
*
441
- * @param lhs The left hand side of the comparison.
442
- * @param rhs The right hand side of the comparison.
440
+ * @param unexpected The unexpected value
441
+ * @param actual The actual value
443
442
* @param msg A description of the assumption; {@code null} for a default message.
444
443
* @throws RuntimeException if the assertion is not true.
445
444
*/
446
- public static void assertNotEquals (Object lhs , Object rhs , String msg ) {
447
- if ((lhs == rhs ) || (lhs != null && lhs .equals (rhs ))) {
445
+ public static void assertNotEquals (Object unexpected , Object actual , String msg ) {
446
+ if ((unexpected == actual ) || (unexpected != null && unexpected .equals (actual ))) {
448
447
msg = Objects .toString (msg , "assertNotEquals" )
449
- + ": expected " + Objects .toString (lhs )
450
- + " to not equal " + Objects .toString (rhs );
448
+ + ": expected not equals but was " + Objects .toString (actual );
451
449
fail (msg );
452
450
}
453
451
}
0 commit comments