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

    assertThat(
        Curry.curry7(this::seven)
            .apply(3)
            .apply(2)
            .apply("three")
            .apply("4")
            .apply(true)
            .apply(10)
            .apply("prefix"),
        equalTo("prefixthree164true"));
  }