Exemplo n.º 1
0
  @Test
  public void testMethodRef5() {

    assertThat(
        Curry.curry5(this::five).apply(3).apply(2).apply("three").apply("4").apply(true),
        equalTo("three64true"));
  }