Hello,
Is it possible to have unit test's specific resources or assets ?
In my main/res/raw, I have a ws.json file that is used by my production code.
I want in some unit test to load a modified version of this json. I would like to have in test/res/raw another file called test.json and then reference it in a test java file with R.raw.test.
I don't want to override all the files in main/res/raw because I also need them in the java test file.
I tried to modify the source sets of my test but it doesnt work
sourceSets {
test {
assets.srcDirs = ['src/test/res', 'src/main/res']
}
}Is this even possible with the current build system ?
Thank you.