Tive muitos problemas com recursos de teste no Android Studio, então configurei alguns testes para maior clareza. No meu projeto
mobile
(aplicativo Android), adicionei os seguintes arquivos:
mobile/src/test/java/test/ResourceTest.java
mobile/src/test/resources/test.txt
mobile/src/test/resources/test/samePackage.txt
A classe de teste (todos os testes são aprovados):
assertTrue(getClass().getResource("test.txt") == null);
assertTrue(getClass().getResource("/test.txt").getPath().endsWith("test.txt"));
assertTrue(getClass().getResource("samePackage.txt").getPath().endsWith("test/samePackage.txt"));
assertTrue(getClass().getResource("/test/samePackage.txt").getPath().endsWith("test/samePackage.txt"));
assertTrue(getClass().getClassLoader().getResource("test.txt").getPath().endsWith("test.txt"));
assertTrue(getClass().getClassLoader().getResource("test/samePackage.txt").getPath().endsWith("test/samePackage.txt"));
No mesmo projeto raiz, tenho um projeto Java (não Android) chamado data
. Se eu adicionar os mesmos arquivos ao projeto de dados:
data/src/test/java/test/ResourceTest.java
data/src/test/resources/test.txt
data/src/test/resources/test/samePackage.txt
Então, todos os testes acima falharão se eu executá-los no Android Studio, mas eles passam na linha de comando com ./gradlew data:test
. Para contornar isso, eu uso este hack (em Groovy)
def resource(String path) {
getClass().getResource(path) ?:
// Hack to load test resources when executing tests from Android Studio
new File(getClass().getClassLoader().getResource('.').path
.replace('/build/classes/test/', "/build/resources/test$path"))
}
Uso: resource('/test.txt')
Android Studio 2.3, Gradle 3.3