aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2018-07-23 17:19:51 -0700
committerYohei Yukawa <yukawa@google.com>2018-07-23 17:19:51 -0700
commit560a5bc596720f27ae5c543b64a560849120f273 (patch)
tree7321bf4aca0620b3f69e5e44278a05d62e04c6a1
parent501ff64cfd65cc6619f4c9511d52ff3c9ff3176a (diff)
downloadlatinime-560a5bc596720f27ae5c543b64a560849120f273.tar.gz
latinime-560a5bc596720f27ae5c543b64a560849120f273.tar.xz
latinime-560a5bc596720f27ae5c543b64a560849120f273.zip
Migrate to Android Testing Support Lib (part 6/N)
This is a follow up CL to previous CLs that converted unit tests to use Android Testing Support Library but forgot to remove unused import lines. Bug: 110805255 Test: verified as follows. No new test failures. tapas adb LatinIME LatinIMETests arm64 userdebug && \ DISABLE_PROGUARD=true make -j LatinIME && \ adb install -r $OUT/system/app/LatinIME/LatinIME.apk && \ atest LatinIMETests:com.android.inputmethod.latin Change-Id: I8762b0dfc209bdf68867f725b03a22286026faae
-rw-r--r--tests/src/com/android/inputmethod/keyboard/internal/KeyboardTextsSetTests.java1
-rw-r--r--tests/src/com/android/inputmethod/latin/utils/JsonUtilsTests.java2
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/src/com/android/inputmethod/keyboard/internal/KeyboardTextsSetTests.java b/tests/src/com/android/inputmethod/keyboard/internal/KeyboardTextsSetTests.java
index 1a6f0d3f5..99211922e 100644
--- a/tests/src/com/android/inputmethod/keyboard/internal/KeyboardTextsSetTests.java
+++ b/tests/src/com/android/inputmethod/keyboard/internal/KeyboardTextsSetTests.java
@@ -20,7 +20,6 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import android.content.Context;
-import android.test.AndroidTestCase;
import android.support.test.InstrumentationRegistry;
import android.support.test.filters.SmallTest;
import android.support.test.runner.AndroidJUnit4;
diff --git a/tests/src/com/android/inputmethod/latin/utils/JsonUtilsTests.java b/tests/src/com/android/inputmethod/latin/utils/JsonUtilsTests.java
index e0a2b8116..a9e40a7a4 100644
--- a/tests/src/com/android/inputmethod/latin/utils/JsonUtilsTests.java
+++ b/tests/src/com/android/inputmethod/latin/utils/JsonUtilsTests.java
@@ -18,14 +18,12 @@ package com.android.inputmethod.latin.utils;
import static org.junit.Assert.assertEquals;
-import android.test.AndroidTestCase;
import android.support.test.filters.SmallTest;
import android.support.test.runner.AndroidJUnit4;
import java.util.Arrays;
import java.util.List;
-import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;