Hi guys, I want to implement test classes that are...
# multiplatform
c
Hi guys, I want to implement test classes that are ubicated in module B from module A. I tried using
Copy code
dependencies.add("testImplementation",project(":B"))
But It didn't work. Does anyone know how I can achieve this?
s
This syntax works for me:
Copy code
kotlin {
    jvm()

    sourceSets {
        commonTest {
            dependencies {
                implementation(project(":utils:test"))
            }
        }
    }
}