Skip to content

Instantly share code, notes, and snippets.

@nealeu
Created February 27, 2025 15:55
Show Gist options
  • Save nealeu/79d48b41b646d259438ecf9979fabd3f to your computer and use it in GitHub Desktop.
Save nealeu/79d48b41b646d259438ecf9979fabd3f to your computer and use it in GitHub Desktop.
Idea as to how to do Spock like tabular tests - consider how this could be better in Kotlin DSL
package com.example.springsecurityexamples;
import static com.example.springsecurityexamples.Todo.Chain.values;
import java.math.BigInteger;
public class Todo {
void parameterizedTest() {
values(1, "a", BigInteger.TEN)
.and(2, "b", BigInteger.ONE)
.forEach((v1, v2, v3) -> {
int i = v1;
String s = v2;
BigInteger b = v3;
// TODO do tests
});
}
public static class Chain<V1, V2, V3> {
public Chain(V1 v1, V2 v2, V3 v3) {
// TODO create list
}
public static <V1, V2, V3> Chain<V1, V2, V3> values(V1 v1, V2 v2, V3 v3) {
return new Chain<V1, V2, V3>(v1, v2, v3);
}
public Chain<V1, V2, V3> and(V1 v1, V2 v2, V3 v3) {
// TODO append to list
return this;
}
public void forEach(TriConsumer<V1, V2, V3> consumer) {
// TODO iterate over list
}
}
public interface TriConsumer<K, V, S> {
void accept(K k, V v, S s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment