Dale King

Results 141 comments of Dale King

Alternatively, kotest already has a nice assertion library that supports MPP.

Didn't even see the options to be able to do that. Doing that worked, but you might want to make the advanced options less hidden.

Actually, they may not have one at all.

Note CocoaTouchBarcodes is not my library. It is simply a library that we used on a previous project that was not on github and we needed to make changes to....

I second this. I am actually invoking the command line pitest within gradle (because none of the gradle plugins support Kotlin Multiplatform Mobile) and the spinner is annoying, but I...

This is what I ended up doing in my gradle task to filter out the spinner: standardOutput = new FilterOutputStream(System.out) { boolean filtering = true @Override void write(int b) throws...

[Kotlin Multiplatform Mobile](https://kotlinlang.org/lp/mobile/) is sort of a recent rebranding of part of the general [Kotlin Multiplatform](https://kotlinlang.org/docs/reference/multiplatform.html) to sort of separate out the use case of Kotlin -> JVM and Javascript...

Wasn't trying to hijack the thread, I was merely trying to preemptively explain why I was using the command line version of pitest, since I know its use is discouraged.

And applying the gradle-pitest-plugin does nothing since it only does something if you have Java plugin applied and doesn't give any error if you don't. Later on I was going...

I am facing this issue as well for memoized values. My memoized value is actually creating a temp directory and populating it and when it is no longer needed in...