Can the `Arb` s be used with Junit5, do they need ...
# kotest
d
Can the
Arb
s be used with Junit5, do they need all the other kotest dependencies/setup? I have existing junit 5 tests in a project and I'm considering only using kotest's Arbs and maybe property testing independantly from Kotest...
c
property testing can be used independent from the rest of kotest iirc
d
It seems to pull in common, and assertions-api/shared...
s
yeah it pulls in common, which is just a couple of helpers, and assertions-api is very simple shared stuff too, a bit like common.
You don't need to be using kotest framework for your tests though, you can think of kotest property testing as a stand alone library
d
we use a different assertion library, So it would have been nice not to have to pull in all those extra assertions... but nice to know That property testing is independent!
s
Those assertions won't cloud your namespace, they're really just plumbing for other internal things shared across kotest libraries.