I'm using Robolectric 3 and I'm trying to load some resources that are in my test/res/
folder.
Here is my file hierarchy :
project/
|-src/
|--main/
|---AndroidManifest.xml
|---res/
|----raw/
|-----prod.json
|--test/
|---java/
|----com.app/
|-----CustomTestRunner.java
|-----Mytest.java
|---res/
|----raw/
|-----test.json
I would like in MyTest.java
to do something like
RuntimeEnvironment.application.getResources().openRawResource(R.raw.test);
but i don't want to override all my "standard" res/
folder because i also need the prod.json
file inside of my test.
Any idea of how to do such things ?
Thank you
Instead of putting the json in src/test/res/raw you might want to put it in src/test/resources/
and then you can use it ( with the latest build plugin and latest AS ) via getResource
Be aware that there is a bug in older versions - you need to use AS from canary channel: https://code.google.com/p/android/issues/detail?id=136013