Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support mixed boxed and unboxed primitives in assertEquals()
Prior to this commit, the following resulting in a compiler error due to ambiguity. assertEquals(42, Integer.valueOf("42")); The same holds true for all primitive types other than `boolean`. This commit addresses this shortcoming by introducing assertEquals() variants that support mixed boxed and unboxed primitive values. Issue: #1638
- Loading branch information