Skip to content

Commit

Permalink
fix android tests (#229)
Browse files Browse the repository at this point in the history
fix android tests
  • Loading branch information
albho authored Nov 14, 2024
1 parent 40b9df4 commit 1012d7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -16,10 +16,7 @@
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;

Expand All @@ -45,7 +42,6 @@
@RunWith(AndroidJUnit4.class)
public class CobraTest {

@Rule
Context testContext;
Context appContext;
AssetManager assetManager;
Expand All @@ -69,7 +65,6 @@ public void testProcess() throws CobraException {
Cobra cobra = new Cobra(accessKey);

File testAudio = new File(testResourcesPath, "audio/sample.wav");
ArrayList<Float> detectionResults = new ArrayList<>();

List<Float> probs = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@
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;

Expand All @@ -31,11 +29,11 @@
@RunWith(AndroidJUnit4.class)
public class PerformanceTest {

@Rule
public Context testContext;
Context testContext;
Context appContext;
AssetManager assetManager;
String testResourcesPath;

String accessKey;

@Before
Expand All @@ -49,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);
Expand Down

0 comments on commit 1012d7a

Please sign in to comment.