So like in gradle, say module A had all the tests ...
# koin
a
So like in gradle, say module A had all the tests and injections written. module B would be able to add its modules and then run all the tests without copy pasting everything
t
create common gradle module for tests that will contain all this setup
a
But I guess if I have a class containing a bunch of `@Test`s, I can't just transfer that from one module to another? One thing I see is spek https://spekframework.org/ But I'm wondering if there are other solutions
t
I think, abstract class that contains bunch of
@Test fun ...
may work