summaryrefslogtreecommitdiffstats
path: root/tests/src/com
diff options
context:
space:
mode:
authorEarl Ou <shunhsingou@google.com>2012-08-03 14:10:46 +0800
committerEarl Ou <shunhsingou@google.com>2012-08-06 17:16:30 +0800
commit4f5541c245076b89a9cb2e2d4b451c7f5dcb6e1a (patch)
treec5b4337f8afc6cc6968884b29170a95dd5b1e197 /tests/src/com
parentbdcdb15ad345633bbab6505207008f018059f107 (diff)
downloadandroid_packages_apps_Snap-4f5541c245076b89a9cb2e2d4b451c7f5dcb6e1a.tar.gz
android_packages_apps_Snap-4f5541c245076b89a9cb2e2d4b451c7f5dcb6e1a.tar.bz2
android_packages_apps_Snap-4f5541c245076b89a9cb2e2d4b451c7f5dcb6e1a.zip
use InstrumentationTestCase for ExifParserTest
because we don't need to test Activity Change-Id: I3d21f7f5ca05cffba3bd2cd54c5899255e1103c1
Diffstat (limited to 'tests/src/com')
-rw-r--r--tests/src/com/android/gallery3d/exif/ExifParserTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/gallery3d/exif/ExifParserTest.java b/tests/src/com/android/gallery3d/exif/ExifParserTest.java
index a2c53831f..a18a3f8db 100644
--- a/tests/src/com/android/gallery3d/exif/ExifParserTest.java
+++ b/tests/src/com/android/gallery3d/exif/ExifParserTest.java
@@ -18,7 +18,7 @@ package com.android.gallery3d.exif;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
-import android.test.ActivityTestCase;
+import android.test.InstrumentationTestCase;
import com.android.gallery3d.tests.R;
@@ -26,7 +26,7 @@ import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
-public class ExifParserTest extends ActivityTestCase {
+public class ExifParserTest extends InstrumentationTestCase {
private static final String TAG = "ExifParserTest";
// The test image
private static final int IMG_RESOURCE_ID = R.raw.test_galaxy_nexus;