tim
07/01/2020, 3:24 PM// inside project A /src/tests/kotlin
package com.example.a
object TestHelper { ... }
And from project b I'd like to be able to do
// inside project B /src/tests/kotlin
package com.example.b
import com.example.a.TestHelper
fun someTest() ...
I was checking out test fixtures gradle plugin for java but I couldn't get it to work. Wasnt sure if i was misconfigurating it, or otherwise?Joost Klitsie
07/02/2020, 8:02 AMtim
07/02/2020, 8:20 AM