aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@google.com>2018-12-13 19:06:42 -0800
committerBrett Chabot <brettchabot@google.com>2018-12-13 19:06:42 -0800
commitc05a70a4ca769664f2315fff1f3bf3cb2ce3e300 (patch)
tree3a7b237b2281c04af97d305524e5196c3cc6239b /tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
parentf7b80bb317e7be97a02975b54388d7f52c22c25c (diff)
downloadlatinime-c05a70a4ca769664f2315fff1f3bf3cb2ce3e300.tar.gz
latinime-c05a70a4ca769664f2315fff1f3bf3cb2ce3e300.tar.xz
latinime-c05a70a4ca769664f2315fff1f3bf3cb2ce3e300.zip
Migrate packages/inputmethods/LatinIME to androidx.test
See go/jetpack-test-android-migration Test: make checkbuild Change-Id: I63edeced1465725cd8d6467cd75ea1acc2608932
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java b/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
index 96dfa36c2..da23c9cb8 100644
--- a/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
+++ b/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
@@ -21,10 +21,13 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
+import androidx.test.filters.SmallTest;
+import androidx.test.runner.AndroidJUnit4;
+
import com.android.inputmethod.latin.common.CollectionUtils;
-import android.support.test.filters.SmallTest;
-import android.support.test.runner.AndroidJUnit4;
+import org.junit.Test;
+import org.junit.runner.RunWith;
import java.util.ArrayList;
import java.util.Arrays;
@@ -33,9 +36,6 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
/**
* Tests for {@link CollectionUtils}.
*/