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
christophsturm
12/22/2022, 1:10 PM
property testing can be used independent from the rest of kotest iirc
d
dave08
12/22/2022, 1:11 PM
It seems to pull in common, and assertions-api/shared...
s
sam
12/22/2022, 5:17 PM
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.
sam
12/22/2022, 5:17 PM
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
dave08
12/22/2022, 10:31 PM
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
sam
12/23/2022, 1:41 AM
Those assertions won't cloud your namespace, they're really just plumbing for other internal things shared across kotest libraries.