- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for unitTests (0.03 sec)
-
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} data class GradleSubproject( val name: String, val path: String, val unitTests: Boolean = true, val functionalTests: Boolean = true, val crossVersionTests: Boolean = false, ) { fun hasTestsOf(testType: TestType) = (unitTests && testType.unitTests) || (functionalTests && testType.functionalTests) || (crossVersionTests && testType.crossVersionTests)
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Sun Aug 03 22:40:28 UTC 2025 - 25.9K bytes - Viewed (0) -
android-test/build.gradle.kts
) } compileOptions { targetCompatibility(JavaVersion.VERSION_11) sourceCompatibility(JavaVersion.VERSION_11) } testOptions { targetSdk = 34 unitTests.isIncludeAndroidResources = true } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } // issue merging due to conflict with httpclient and something else
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 20:01:04 UTC 2025 - 3.8K bytes - Viewed (2) -
okhttp/build.gradle.kts
} } android { compileSdk = 35 namespace = "okhttp.okhttp3" defaultConfig { minSdk = 21 consumerProguardFiles("okhttp3.pro") } testOptions { unitTests { isIncludeAndroidResources = true } } sourceSets { named("main") { manifest.srcFile("src/androidMain/AndroidManifest.xml") assets.srcDir("src/androidMain/assets")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 03:59:03 UTC 2025 - 9.4K bytes - Viewed (0)