are there other multiplatform testing libraries ou...
# announcements
n
are there other multiplatform testing libraries out there, or is it basically just
kotlin.test
? I miss AssertJ...
s
why can’t you use AssertJ?
Maybe you want to have a look at Assertk
b
Also kotest, although not full-MPP
👍 1
s
What is MPP?
n
multiplatform
s
oh, so MP, I see
n
JetBrains calls it MPP
b
MultiPlatformProject
n
thanks though, assertk looks promising
I tried doing
assertTrue(mySet == setOf(1, 2, 3))
and 1. it only passes on some platforms, and 2. when it fails, of course it's cryptic. so...it's nice to have a better library
s
okay now that makes sense @Big Chungus
@nanodeath I agree with you, AssertJ should be still usable however
I did not work with Assertk yet but I thought I wanted to play with it
n
assertj is only usable if I'm using the
jvmTest
source set, not the
commonTest
source set
s
ah okay, this is definitely a -1
a
We're using assertk, works pretty well in our jvm project, but I think it has multi platform support too
👍 2
d
You could also try #CAR7KJ96J
But not sure about mpp for it
n
d
Yup, now I see someone already raised the issue https://github.com/robfletcher/strikt/issues/113. But we use it a lot for jvm, it seems to be very flexible and extendable. Well, good luck 🙂!