diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2016-07-08 17:13:03 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2016-07-08 17:13:05 +0000 |
commit | b2969355c933aa09145b1689a44eef35ef193b1e (patch) | |
tree | 9491915d94f5bf07e6313365a89cc25457bbd243 | |
parent | 1404b099380d41ef61be2b4d7dbeffecb04e2877 (diff) | |
parent | 8376f9eaa0bd41a9c7ce7ada4cb7c2cda28ef64c (diff) |
Merge "Move RemoteViewsTest to the right package"
-rw-r--r-- | core/tests/coretests/src/android/widget/RemoteViewsTest.java (renamed from core/tests/coretests/src/android/view/RemoteViewsTest.java) | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/core/tests/coretests/src/android/view/RemoteViewsTest.java b/core/tests/coretests/src/android/widget/RemoteViewsTest.java index 6dfd3bb11795..4e3bf46f331d 100644 --- a/core/tests/coretests/src/android/view/RemoteViewsTest.java +++ b/core/tests/coretests/src/android/widget/RemoteViewsTest.java @@ -14,13 +14,7 @@ * limitations under the License */ -package android.view; - -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.ExpectedException; -import org.junit.runner.RunWith; +package android.widget; import android.content.Context; import android.graphics.Bitmap; @@ -29,13 +23,16 @@ import android.graphics.drawable.Drawable; import android.support.test.InstrumentationRegistry; import android.support.test.filters.SmallTest; import android.support.test.runner.AndroidJUnit4; -import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.RemoteViews; -import android.widget.TextView; +import android.view.View; import com.android.frameworks.coretests.R; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.ExpectedException; +import org.junit.runner.RunWith; + import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertSame; |