android-testing-templates icon indicating copy to clipboard operation
android-testing-templates copied to clipboard

Results 9 android-testing-templates issues
Sort by recently updated
recently updated
newest added

I tried to add an Espresso test to `module-flavor1-androidTest-only`, but I haven't gotten very far. I copied [`EspressoTest`](https://github.com/googlesamples/android-testing-templates/blob/master/AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/ui/espresso/EspressoTest.kt) into `module-flavor1-androidTest-only` and added the dependencies that it seemed to need. My...

Update the gradle versions and dependencies kinds of stuff.

If you try to minify (proguard) debug build by un-commenting : ``` debug { // Run code coverage reports by default on debug builds. testCoverageEnabled = true // Uncomment this...

It was written incorrect activity class name ( layout context name)

https://github.com/googlesamples/android-testing-templates/tree/master/AndroidTestingBlueprint#running-instrumentation-tests says: > In Android Studio > * In the Build Variants window, make sure the Android Instrumentation Tests option is selected. > * Open a Instrumentation test class like...

I had an issue when trying to set up a testing module, based on the model provided in `module-flavor1-androidTest-only`. I eventually realized that it was due to the fact that...

By default, the test module (`com.android.test`) targets the `debug` build type. The [official documentation](https://developer.android.com/studio/test/advanced-test-setup#use-separate-test-modules-for-instrumented-tests) mentions that it is possible to change this default configuration and target a different build type...