What would be a suitable way to replace a JUnit 5
ParameterizedTest
with a
CSVSource
? I have two rows each with 3 values, but with the parameterized test, I have type safety by way of the method signature, which is myTest(Int, Int, String), my workaround for this is currently:
checkAll(Exhaustive.of(Triple(1, 1, "A"), Triple(2, 3, "B")) { }
But this does not seem very elegant as I still have to bind the triple values to the named variables I want