Better test method name.

This commit is contained in:
Gary Gregory 2021-07-27 12:30:03 -04:00
parent eb15d360b4
commit 3b56144559
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public class StreamsTest {
}
@Test
public void testOf() {
public void testOfArray() {
assertEquals(0, Streams.of((Object[]) null).count());
assertEquals(1, Streams.of("foo").count());
assertEquals(2, Streams.of("foo", "bar").count());