Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AndroidUnitTest (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/Workarounds.kt

                }
            }
    
        fun canAccessConventions(from: String, area: String) =
            withWorkaroundsFor(area) {
                from.startsWith("com.android.build.gradle.tasks.factory.AndroidUnitTest") || callStackHasElement {
                    isBuildScanPlugin(className)
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                buildFile << """
                    def finalizerTask = tasks.register("testFinalizer")
                    subprojects {
                        tasks.withType(com.android.build.gradle.tasks.factory.AndroidUnitTest) { testTask ->
                            testTask.finalizedBy(finalizerTask)
                            finalizerTask.configure {
                                dependsOn testTask
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    include::sample[dir="snippets/buildCache/caching-android-projects/groovy",files="build.gradle[tags=cacheKapt]"]
    ====
    
    == Unit test execution
    
    Like unit tests in a pure Java project, the equivalent test task in an Android project (`AndroidUnitTest`) is also cacheable since Android Gradle Plugin 3.6.0.
    
    == Instrumented test execution (i.e., Espresso tests)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top