there isn't any plain `assert()` from kotlin commo...
# multiplatform
e
there isn't any plain
assert()
from kotlin common stdlib for testing?
g
Do you try to check against a boolean value? If so,
assertTrue
or
assertFalse
should be enough no?
e
yep (I actually implemented it in my own), but on traditional jvm projects there is simply
assert
, I was wondering if I'm doing something wrong in my gradle script..
g
In JVM you probably use the JUnit library behind the hood, here it's kotlin.test and there is some differences between both, generally for the better.
e
yep, I do