From d9b603519c8a3044bc8dd659a872ca27d993b4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vorburger=20=E2=9B=91=EF=B8=8F?= Date: Fri, 6 Oct 2023 17:48:55 +0200 Subject: [PATCH] SdkSuppress FhirSyncWorkerBenchmark oneTimeSync_50patients (re. #2235) --- .../google/android/fhir/benchmark/FhirSyncWorkerBenchmark.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/benchmark/src/androidTest/java/com/google/android/fhir/benchmark/FhirSyncWorkerBenchmark.kt b/engine/benchmark/src/androidTest/java/com/google/android/fhir/benchmark/FhirSyncWorkerBenchmark.kt index e74dd7028a..01b71710ea 100644 --- a/engine/benchmark/src/androidTest/java/com/google/android/fhir/benchmark/FhirSyncWorkerBenchmark.kt +++ b/engine/benchmark/src/androidTest/java/com/google/android/fhir/benchmark/FhirSyncWorkerBenchmark.kt @@ -21,6 +21,7 @@ import androidx.benchmark.junit4.BenchmarkRule import androidx.benchmark.junit4.measureRepeated import androidx.test.core.app.ApplicationProvider import androidx.test.ext.junit.runners.AndroidJUnit4 +import androidx.test.filters.SdkSuppress import androidx.work.ListenableWorker import androidx.work.WorkerParameters import androidx.work.testing.TestListenableWorkerBuilder @@ -127,6 +128,7 @@ class FhirSyncWorkerBenchmark { @Test fun oneTimeSync_10patients() = oneTimeSync(10, 5, 5) + @SdkSuppress // TODO https://github.com/google/android-fhir/issues/2235 FIXME @Test fun oneTimeSync_50patients() = oneTimeSync(50, 5, 5) private fun oneTimeSync(numberPatients: Int, numberObservations: Int, numberEncounters: Int) =