I'm following this tutorial.
What I want to do is to create unit tests with AndroidJunitRunner
.
My directory in app/src
looks like this:
androidTest
debug
main
release
android docs suggests that I create a test/java
for my unit tests.
The problem is that in android studio I can't create a new directory if I'm on android project mode. And I should find the directory manually and create it manually.
Is there a way to automatically create these directories and tests for one flavor?
I've read this question, which doesn't relate to my problem.