├── AndroidTestingBlueprint-kotlinApp ├── .gitignore ├── .google │ └── packaging.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ ├── proguard-test-rules.pro │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ ├── integration │ │ │ └── AndroidLibraryModuleIntegrationTest.kt │ │ │ └── ui │ │ │ ├── espresso │ │ │ └── EspressoTest.kt │ │ │ └── uiautomator │ │ │ └── UiAutomatorTest.kt │ │ ├── androidTestFlavor2 │ │ └── java │ │ │ └── com.example.android.testing.blueprint │ │ │ └── ui.espresso │ │ │ └── EspressoTestForFlavor2.kt │ │ ├── flavor1 │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── android │ │ │ │ └── testing │ │ │ │ └── blueprint │ │ │ │ └── Flavor1Class.kt │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── flavor2 │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── android │ │ │ │ └── testing │ │ │ │ └── blueprint │ │ │ │ └── HelloTestingBlueprintActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_hello_testing_blueprint.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── test │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── android │ │ │ │ └── testing │ │ │ │ └── blueprint │ │ │ │ └── LocalUnitTest.kt │ │ └── resources │ │ │ └── helloBlueprint.json │ │ └── testFlavor1 │ │ └── java │ │ └── com │ │ └── example │ │ └── android │ │ └── testing │ │ └── blueprint │ │ └── LocalUnitTestForFlavor1.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module-android-library │ ├── build.gradle │ ├── proguard-consumer-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ └── androidlibrarymodule │ │ │ └── AndroidLibraryModuleTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ └── androidlibrarymodule │ │ │ └── AndroidLibraryModuleClass.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── module-flavor1-androidTest-only │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── example │ │ └── android │ │ └── testing │ │ └── blueprint │ │ └── test │ │ └── AndroidTestOnlyModuleTest.kt ├── module-plain-kotlin │ ├── build.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ └── plainkotlinmodule │ │ │ └── MyPlainKotlinClass.kt │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── android │ │ └── testing │ │ └── blueprint │ │ └── plainkotlinmodule │ │ └── MyPlainKotlinClassTest.kt └── settings.gradle ├── AndroidTestingBlueprint ├── .gitignore ├── .google │ └── packaging.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ ├── proguard-test-rules.pro │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ ├── integration │ │ │ └── AndroidLibraryModuleIntegrationTest.java │ │ │ └── ui │ │ │ ├── espresso │ │ │ └── EspressoTest.java │ │ │ └── uiautomator │ │ │ └── UiAutomatorTest.java │ │ ├── androidTestFlavor2 │ │ └── java │ │ │ └── com.example.android.testing.blueprint │ │ │ └── ui.espresso │ │ │ └── EspressoTestForFlavor2.java │ │ ├── flavor1 │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── android │ │ │ │ └── testing │ │ │ │ └── blueprint │ │ │ │ └── Flavor1Class.java │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── flavor2 │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── android │ │ │ │ └── testing │ │ │ │ └── blueprint │ │ │ │ └── HelloTestingBlueprintActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_hello_testing_blueprint.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── test │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── android │ │ │ │ └── testing │ │ │ │ └── blueprint │ │ │ │ └── LocalUnitTest.java │ │ └── resources │ │ │ └── helloBlueprint.json │ │ └── testFlavor1 │ │ └── java │ │ └── com │ │ └── example │ │ └── android │ │ └── testing │ │ └── blueprint │ │ └── LocalUnitTestForFlavor1.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module-android-library │ ├── build.gradle │ ├── proguard-consumer-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ └── androidlibrarymodule │ │ │ └── AndroidLibraryModuleTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ └── androidlibrarymodule │ │ │ └── AndroidLibraryModuleClass.java │ │ └── res │ │ └── values │ │ └── strings.xml ├── module-flavor1-androidTest-only │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── example │ │ └── android │ │ └── testing │ │ └── blueprint │ │ └── test │ │ └── AndroidTestOnlyModuleTest.java ├── module-plain-java │ ├── build.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── android │ │ │ └── testing │ │ │ └── blueprint │ │ │ └── plainjavamodule │ │ │ └── MyPlainJavaClass.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── android │ │ └── testing │ │ └── blueprint │ │ └── plainjavamodule │ │ └── MyPlainJavaClassTest.java └── settings.gradle ├── LICENSE └── README.md /AndroidTestingBlueprint-kotlinApp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | local.properties 4 | build 5 | .gradle 6 | -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/.google/packaging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/.google/packaging.yaml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/CONTRIBUTING.md -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/LICENSE -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/README.md -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/proguard-test-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/proguard-test-rules.pro -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/integration/AndroidLibraryModuleIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/integration/AndroidLibraryModuleIntegrationTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/ui/espresso/EspressoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/ui/espresso/EspressoTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/ui/uiautomator/UiAutomatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/androidTest/java/com/example/android/testing/blueprint/ui/uiautomator/UiAutomatorTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/androidTestFlavor2/java/com.example.android.testing.blueprint/ui.espresso/EspressoTestForFlavor2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/androidTestFlavor2/java/com.example.android.testing.blueprint/ui.espresso/EspressoTestForFlavor2.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/flavor1/java/com/example/android/testing/blueprint/Flavor1Class.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/flavor1/java/com/example/android/testing/blueprint/Flavor1Class.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/flavor1/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/flavor1/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/flavor2/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/flavor2/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/java/com/example/android/testing/blueprint/HelloTestingBlueprintActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/java/com/example/android/testing/blueprint/HelloTestingBlueprintActivity.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/layout/activity_hello_testing_blueprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/layout/activity_hello_testing_blueprint.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/test/java/com/example/android/testing/blueprint/LocalUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/test/java/com/example/android/testing/blueprint/LocalUnitTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/test/resources/helloBlueprint.json: -------------------------------------------------------------------------------- 1 | {"androidTesting":"rocks"} -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/app/src/testFlavor1/java/com/example/android/testing/blueprint/LocalUnitTestForFlavor1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/app/src/testFlavor1/java/com/example/android/testing/blueprint/LocalUnitTestForFlavor1.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/gradle.properties -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/gradlew -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/gradlew.bat -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-android-library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-android-library/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-android-library/proguard-consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-android-library/proguard-consumer-rules.pro -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-android-library/src/androidTest/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-android-library/src/androidTest/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-android-library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-android-library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-android-library/src/main/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-android-library/src/main/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleClass.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-android-library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-android-library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/src/main/java/com/example/android/testing/blueprint/test/AndroidTestOnlyModuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-flavor1-androidTest-only/src/main/java/com/example/android/testing/blueprint/test/AndroidTestOnlyModuleTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/src/main/java/com/example/android/testing/blueprint/plainkotlinmodule/MyPlainKotlinClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/src/main/java/com/example/android/testing/blueprint/plainkotlinmodule/MyPlainKotlinClass.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/src/test/java/com/example/android/testing/blueprint/plainkotlinmodule/MyPlainKotlinClassTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/module-plain-kotlin/src/test/java/com/example/android/testing/blueprint/plainkotlinmodule/MyPlainKotlinClassTest.kt -------------------------------------------------------------------------------- /AndroidTestingBlueprint-kotlinApp/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint-kotlinApp/settings.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | local.properties 4 | build 5 | .gradle 6 | -------------------------------------------------------------------------------- /AndroidTestingBlueprint/.google/packaging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/.google/packaging.yaml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/CONTRIBUTING.md -------------------------------------------------------------------------------- /AndroidTestingBlueprint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/LICENSE -------------------------------------------------------------------------------- /AndroidTestingBlueprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/README.md -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/proguard-rules.pro -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/proguard-test-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/proguard-test-rules.pro -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/androidTest/java/com/example/android/testing/blueprint/integration/AndroidLibraryModuleIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/androidTest/java/com/example/android/testing/blueprint/integration/AndroidLibraryModuleIntegrationTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/androidTest/java/com/example/android/testing/blueprint/ui/espresso/EspressoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/androidTest/java/com/example/android/testing/blueprint/ui/espresso/EspressoTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/androidTest/java/com/example/android/testing/blueprint/ui/uiautomator/UiAutomatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/androidTest/java/com/example/android/testing/blueprint/ui/uiautomator/UiAutomatorTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/androidTestFlavor2/java/com.example.android.testing.blueprint/ui.espresso/EspressoTestForFlavor2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/androidTestFlavor2/java/com.example.android.testing.blueprint/ui.espresso/EspressoTestForFlavor2.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/flavor1/java/com/example/android/testing/blueprint/Flavor1Class.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/flavor1/java/com/example/android/testing/blueprint/Flavor1Class.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/flavor1/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/flavor1/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/flavor2/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/flavor2/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/java/com/example/android/testing/blueprint/HelloTestingBlueprintActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/java/com/example/android/testing/blueprint/HelloTestingBlueprintActivity.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/layout/activity_hello_testing_blueprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/layout/activity_hello_testing_blueprint.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/test/java/com/example/android/testing/blueprint/LocalUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/test/java/com/example/android/testing/blueprint/LocalUnitTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/test/resources/helloBlueprint.json: -------------------------------------------------------------------------------- 1 | {"androidTesting":"rocks"} -------------------------------------------------------------------------------- /AndroidTestingBlueprint/app/src/testFlavor1/java/com/example/android/testing/blueprint/LocalUnitTestForFlavor1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/app/src/testFlavor1/java/com/example/android/testing/blueprint/LocalUnitTestForFlavor1.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/gradle.properties -------------------------------------------------------------------------------- /AndroidTestingBlueprint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidTestingBlueprint/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AndroidTestingBlueprint/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/gradlew -------------------------------------------------------------------------------- /AndroidTestingBlueprint/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/gradlew.bat -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-android-library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-android-library/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-android-library/proguard-consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-android-library/proguard-consumer-rules.pro -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-android-library/src/androidTest/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-android-library/src/androidTest/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-android-library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-android-library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-android-library/src/main/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-android-library/src/main/java/com/example/android/testing/blueprint/androidlibrarymodule/AndroidLibraryModuleClass.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-android-library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-android-library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-flavor1-androidTest-only/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-flavor1-androidTest-only/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-flavor1-androidTest-only/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-flavor1-androidTest-only/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-flavor1-androidTest-only/src/main/java/com/example/android/testing/blueprint/test/AndroidTestOnlyModuleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-flavor1-androidTest-only/src/main/java/com/example/android/testing/blueprint/test/AndroidTestOnlyModuleTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-plain-java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-plain-java/build.gradle -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-plain-java/src/main/java/com/example/android/testing/blueprint/plainjavamodule/MyPlainJavaClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-plain-java/src/main/java/com/example/android/testing/blueprint/plainjavamodule/MyPlainJavaClass.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/module-plain-java/src/test/java/com/example/android/testing/blueprint/plainjavamodule/MyPlainJavaClassTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/module-plain-java/src/test/java/com/example/android/testing/blueprint/plainjavamodule/MyPlainJavaClassTest.java -------------------------------------------------------------------------------- /AndroidTestingBlueprint/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/AndroidTestingBlueprint/settings.gradle -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlesamples/android-testing-templates/HEAD/README.md --------------------------------------------------------------------------------