Johannes Link

Results 390 comments of Johannes Link

Not sure if my question is related or if I should open a different issue: I'd like to use version management when adding project dependencies in plugins. Eg in file...

@malcolmSansen Thanks for the suggestion. I couldn't get it to work and I'm not sure it's worth going into the details since it'd be a hack anyways. I'm wondering why...

Mind that IDE's will have to adapt to show top-level functions as testable methods.

But they don't. In many places. Other example: ```java obect Tests { @Test fun myTest() {} } ``` I've already submitted a few bugs in that regard, e.g. https://youtrack.jetbrains.com/issue/KT-49491 You...

I assume that's a Mockito bug/feature. In Jupiter it probably works because with standard lifecycle a fresh instance of the test class is created with each parameterized test case -...

Closing since considered a bug in Mockito. @rsampaths16 Feel free to reopen if you think otherwise.

The idea is interesting and I'll definitely watch the video. One obvious question is how many different seeds have to be checked. With flat-mapped generators, a different seed can lead...

Just thought about it a bit. Even better than checking the end state of the RNG is to check if the same tree of random inputs is being consumed, which...

@jibidus Thanks for reporting. When you distill an illustrating example you might want to focus on which part is taking longer. I assume it happens during sample generation so typically...

Example from @jibidus: https://github.com/jibidus/jqwik-perfs-demo/blob/main/src/test/java/org/example/Test.kt ```kotlin import net.jqwik.api.Arbitraries import net.jqwik.api.Arbitrary import net.jqwik.api.Combinators.combine import net.jqwik.api.ForAll import net.jqwik.api.Property import net.jqwik.api.Provide import net.jqwik.api.constraints.UseType import net.jqwik.api.domains.Domain import net.jqwik.api.domains.DomainContext import net.jqwik.api.domains.DomainContextBase import net.jqwik.kotlin.api.any import net.jqwik.kotlin.api.anyForSubtypeOf import...