Skip to content
Snippets Groups Projects
Commit 0bf11c8b authored by Fangqiu Su's avatar Fangqiu Su Committed by Android (Google) Code Review
Browse files

Merge "Update the imports to androidx.test.filters.*" into main

parents 4ef66f5a e2cb041c
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,9 @@ android_test {
"android.test.runner",
"android.test.base",
],
static_libs: ["junit"],
static_libs: [
"junit",
"androidx.test.rules",
],
platform_apis: true,
}
......@@ -17,18 +17,16 @@
package android.sax;
import android.graphics.Bitmap;
import android.sax.Element;
import android.sax.ElementListener;
import android.sax.EndTextElementListener;
import android.sax.RootElement;
import android.sax.StartElementListener;
import android.sax.TextElementListener;
import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.LargeTest;
import android.test.suitebuilder.annotation.SmallTest;
import android.util.Log;
import android.util.Xml;
import androidx.test.filters.LargeTest;
import androidx.test.filters.SmallTest;
import com.android.frameworks.saxtests.R;
import com.android.internal.util.XmlUtils;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
......@@ -40,8 +38,6 @@ import java.io.IOException;
import java.io.InputStream;
import java.time.Instant;
import com.android.frameworks.saxtests.R;
public class SafeSaxTest extends AndroidTestCase {
private static final String TAG = SafeSaxTest.class.getName();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment