ParseInputs
ParseInputs
You can now write tests like
@Test
void testWithTypesTransformersAndBoth()
{
var expected = """
1 -> 1
9 -> 1001
""";
ParseInput.from(expected)
.withTypes(Integer.class)
.verifyAll(Integer::toBinaryString);
}
Minor enhancements
Queryable.of(List)
- this is an alias of Queryable.as for consistency withList.of
Approvals.verifyAll(List, Formatter)
- already had this for arrays but not lists