Use isAtLeast() instead of (>=) to make the tests clearer.
Replace assertThat(a >= b).isTrue() with assertThat(a).isAtLeast(b) because it reads more natural, and in case the assertion fails, it will print out the actual values to help debugging. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=201371993
Showing
with
16 additions
and
16 deletions
Please
register
or
sign in
to comment