compileOnly dependencies are not available in tests

For me the above was not working, but the following statement is:

// give test dependencies access to compileOnly dependencies to emulate providedCompile
configurations {
    testImplementation.extendsFrom compileOnly
}
2 Likes