Testing Problem
following kotlin test
class FooTest {
@Property
fun foo(name: String, @ForAll other: String) {
assertNull(name)
}
}
should fail, but is ignored (guess: name is not annotated but other is).
Suggested Solution
jqwik should fail such a test.
Testing Problem
following kotlin test
should fail, but is ignored (guess: name is not annotated but other is).
Suggested Solution
jqwik should fail such a test.