kalidation
kalidation copied to clipboard
Kalidation = A Kotlin validation DSL
It should exist a method inValuesIgnoreCase
In `README` it's said that CharSequences have a function `inValues(val values: List)`, but it's not the case. `inValues` accept a first argument of type String and have optional additional Strings....
``` class MyTest { class A { fun t(): Int { return 0 } } data class B(val nested: A = A()) @Test fun test() { val spec = validationSpec...