From e663573423f4db01f3a6e370c3e6d4e09d1db32d Mon Sep 17 00:00:00 2001 From: Albert Ho Date: Wed, 13 Nov 2024 17:11:08 -0800 Subject: [PATCH] try fix --- .../ai/picovoice/cobra/testapp/CobraTest.java | 18 ++++++------------ .../cobra/testapp/PerformanceTest.java | 16 +++++----------- 2 files changed, 11 insertions(+), 23 deletions(-) diff --git a/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/CobraTest.java b/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/CobraTest.java index 4f40bd9..da8babc 100644 --- a/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/CobraTest.java +++ b/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/CobraTest.java @@ -1,5 +1,5 @@ /* - Copyright 2021-2023 Picovoice Inc. + Copyright 2021-2024 Picovoice Inc. You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE" file accompanying this source. Unless required by applicable law or agreed to in writing, software distributed under the @@ -16,13 +16,9 @@ import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.platform.app.InstrumentationRegistry; -import org.junit.After; -import org.junit.Assume; import org.junit.Before; -import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; -import org.junit.rules.TestRule; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; @@ -44,13 +40,12 @@ @RunWith(AndroidJUnit4.class) -public class CobraTest implements TestRule { +public class CobraTest { - @Rule - public Context testContext; - public Context appContext; - public AssetManager assetManager; - public String testResourcesPath; + Context testContext; + Context appContext; + AssetManager assetManager; + String testResourcesPath; String accessKey = ""; @@ -70,7 +65,6 @@ public void testProcess() throws CobraException { Cobra cobra = new Cobra(accessKey); File testAudio = new File(testResourcesPath, "audio/sample.wav"); - ArrayList detectionResults = new ArrayList<>(); List probs = new ArrayList<>(); diff --git a/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/PerformanceTest.java b/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/PerformanceTest.java index 66a159f..eadb140 100644 --- a/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/PerformanceTest.java +++ b/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/PerformanceTest.java @@ -8,13 +8,10 @@ import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.platform.app.InstrumentationRegistry; -import org.junit.After; import org.junit.Assume; import org.junit.Before; -import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; -import org.junit.rules.TestRule; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; @@ -30,13 +27,12 @@ import ai.picovoice.cobra.Cobra; @RunWith(AndroidJUnit4.class) -public class PerformanceTest implements TestRule { +public class PerformanceTest { - @Rule - public Context testContext; - public Context appContext; - public AssetManager assetManager; - public String testResourcesPath; + Context testContext; + Context appContext; + AssetManager assetManager; + String testResourcesPath; String accessKey; @@ -51,8 +47,6 @@ public void Setup() throws IOException { accessKey = appContext.getString(R.string.pvTestingAccessKey); } - - @Test public void testPerformance() throws Exception { String iterationString = appContext.getString(R.string.numTestIterations);