});
it("4 arguments", () -> {
Verb verb = Verbs.in("test").asAction("test", (first, second, third, fourth, extra) -> context().operation().operationWithNoReturn(first, second, third, fourth));
verb.apply("1", "2", "3", "4");
verify(context().operation()).operationWithNoReturn("1", "2", "3", "4");
});
it("5 or more arguments", () -> {