[PM-19628] Migrate ResultExtensions to core module (#4934)

This commit is contained in:
Patrick Honkonen
2025-03-31 13:38:45 -04:00
committed by GitHub
parent efec5cb4ca
commit b7948948f0
48 changed files with 93 additions and 99 deletions

View File

@@ -36,4 +36,20 @@ android {
dependencies {
implementation(libs.kotlinx.coroutines.android)
testImplementation(platform(libs.junit.bom))
testRuntimeOnly(libs.junit.platform.launcher)
testImplementation(libs.junit.junit5)
testImplementation(libs.junit.vintage)
testImplementation(libs.kotlinx.coroutines.test)
}
tasks {
withType<Test> {
useJUnitPlatform()
maxHeapSize = "2g"
maxParallelForks = Runtime.getRuntime().availableProcessors()
jvmArgs = jvmArgs.orEmpty() + "-XX:+UseParallelGC"
android.sourceSets["main"].res.srcDirs("src/test/res")
}
}