I am using Android Studio.
My code base is in app/src/main/java, unit tests in app/src/test/javaand instrumental tests in app/src/androidTest/java.
For a class named FooI can create a unit test FooTest, but as I create an instrument test, FooTestI get a duplicate class error.
Is there a way to resolve this or change one of the test classes?
source
share