kalidation icon indicating copy to clipboard operation
kalidation copied to clipboard

Kalidation = A Kotlin validation DSL

Results 3 kalidation issues
Sort by recently updated
recently updated
newest added

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...