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

    assertThat(
        Curry.curry8(this::eight)
            .apply(3)
            .apply(2)
            .apply("three")
            .apply("4")
            .apply(true)
            .apply(10)
            .apply("prefix")
            .apply(false),
        equalTo("falseprefixthree164true"));
  }