Emil Kantis
Emil Kantis
Would love to see a `JsonDecoder#discardToken()` feature as well, so we could easily create a collection serializer which discards illegal entries for instance.
You can use [enumAsOrdinalSerializer ](https://github.com/Kantis/ks3/blob/main/doc/standard.md) from my complementary library if you'd like. Or just yank code from there to get a starting point. Note that it uses the ordinal value...
You can instrument the system-under-test with a java agent (not sure how multiplatform support can be achieved). The java agent then provides execution data either over a TCP connection, or...
@Jonatha1983 you would add `-javaagent:$jacocoJarPath=destfile=$pathWhereYouWantCoverageData/jacoco-it.exec,includes=com.mypackages.*"` to the arguments which you start the java process under test with. It all depends a bit on the rest of the infrastructure of your...
MockkBean seems to rely on the Spring Test lifecycle (see [here](https://github.com/Ninja-Squad/springmockk/blob/master/src/main/kotlin/com/ninjasquad/springmockk/ClearMocksTestExecutionListener.kt)) to reset mocks between each test, so I would say this is expected behaviour. To setup the mocks once...
What is the expected in the case of ```kotlin Collections.unmodifiableSequencedSet(linkedSetOf("a", "b", "c")).shouldContainExactly("c", "b", "a") // fails ``` Given that linked sets retain order, and `shouldContainExactly` asserts for order, is it...
@pshevche I think we can leave this issue open for a while. If a lot of people stumble in here looking for answers, we could add something like your extension...
Looks like some other tests relied on the output of the matcher. Other than that I think it looks good to merge
@mirageoasis i kidnapped this PR to try out adding targets for different JDK versions, but it's really hard to get it working correctly and I don't think it's worth the...
Made obsolete by #4599