@Test public void testOf() {
assertKeyValues(BiStream.of("one", 1))
.containsExactlyEntriesIn(ImmutableMultimap.of("one", 1))
.inOrder();
assertKeyValues(BiStream.of("one", 1, "two", 2))
.containsExactlyEntriesIn(ImmutableMultimap.of("one", 1, "two", 2))
.inOrder();
assertKeyValues(BiStream.of("one", 1, "two", 2, "three", 3))
.containsExactlyEntriesIn(ImmutableMultimap.of("one", 1, "two", 2, "three", 3))
.inOrder();
assertKeyValues(BiStream.of("one", 1, "two", 2, "three", 3, "four", 4))
.containsExactlyEntriesIn(ImmutableMultimap.of(
"one", 1, "two", 2, "three", 3, "four", 4))
.inOrder();
assertKeyValues(BiStream.of("one", 1, "two", 2, "three", 3, "four", 4, "five", 5))
.containsExactlyEntriesIn(ImmutableMultimap.of(
"one", 1, "two", 2, "three", 3, "four", 4, "five", 5))
.inOrder();
}
BiStreamTest.java 文件源码
java
阅读 36
收藏 0
点赞 0
评论 0
项目:mug
作者:
评论列表
文章目录