From a7524da862ee6d63e673cfb39afec65273e8fa85 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Tue, 11 Feb 2014 12:40:15 -0800 Subject: [PATCH] Adding test tag to sms test Change-Id: Ie8ef012cf07715582b602e75a2ba19dfe1c22a29 --- .../SmsTest/src/com/android/emulator/sms/test/SmsTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/emulator/test-apps/SmsTest/src/com/android/emulator/sms/test/SmsTest.java b/tools/emulator/test-apps/SmsTest/src/com/android/emulator/sms/test/SmsTest.java index 104e33fc0..4df5c5125 100644 --- a/tools/emulator/test-apps/SmsTest/src/com/android/emulator/sms/test/SmsTest.java +++ b/tools/emulator/test-apps/SmsTest/src/com/android/emulator/sms/test/SmsTest.java @@ -45,9 +45,10 @@ public class SmsTest { public Context mContext; /** - * Verify that an SMS has been recieved with the correct number and body + * Verify that an SMS has been received with the correct number and body */ - public void testRecievedSms(){ + @Test + public void testReceivedSms(){ ContentResolver r = mContext.getContentResolver(); Uri message = Uri.parse("content://sms/"); Cursor c = r.query(message,null,null,null,null);