Skip to content

Commit

Permalink
Use a better test for CharArrays#min for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
nyancrimew committed Jan 9, 2017
1 parent 549eebd commit 999494f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void append() {
@Test
public void min() {
assertThat(CharArrays.min('a'), is('a'));
assertThat(CharArrays.min('a', 'b', 'c'), is('a'));
assertThat(CharArrays.min('b', 'a', 'c'), is('a'));
assertThat(CharArrays.min('b', 'b', 'b'), is('b'));
}

Expand Down

0 comments on commit 999494f

Please sign in to comment.