@Test
 public void sumLong() {
   ImmutableBag<Integer> integers = this.newBag().collect(Integer::valueOf);
   long result = integers.sumOfLong(Integer::longValue);
   long expected = FastList.newList(integers).injectInto(0, AddFunction.INTEGER_TO_LONG);
   Assert.assertEquals(expected, result);
 }