Duplicate Class Error In Android Studio
I'm using Android Studio. My code base is located in app/src/main/java, unit tests in app/src/test/java and instrumented tests in app/src/androidTest/java. For a class named Fo
Solution 1:
It is odd that you need the same class tested under instrumented and vanilla unit tests since if you've followed MVC (or one of its many, many variations) you shouldn't need to worry about instrumentation for the vast majority of your testing. I've never experienced this but I think that yes - you would need to keep the test names distinct.
Post a Comment for "Duplicate Class Error In Android Studio"