I want to clarify whether I understood correctly. That is, in grail such value

android { ... testBuildType "staging" } 

This is indicated so that when building the test, the gradil knows from which directory to take these tests?

If we say I need to work with instrumental tests that should be in /src/androidTest/java/ then I should specify in the assembly

 android { ... testBuildType "androidTest" } 

And if with local, respectively

 android { ... testBuildType "test" } 

But something seems to me that I missed something))

    0