diff --git a/androidTest/java/org/thoughtcrime/securesms/RegistrationActivityTest.java b/androidTest/java/org/thoughtcrime/securesms/RegistrationActivityTest.java deleted file mode 100644 index 8f0feb7fc2..0000000000 --- a/androidTest/java/org/thoughtcrime/securesms/RegistrationActivityTest.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.thoughtcrime.securesms; - -import static android.support.test.espresso.Espresso.*; -import static android.support.test.espresso.action.ViewActions.*; -import static android.support.test.espresso.matcher.ViewMatchers.*; -import static android.support.test.espresso.assertion.ViewAssertions.*; - -import android.test.suitebuilder.annotation.LargeTest; - -@LargeTest -public class RegistrationActivityTest extends RoutedInstrumentationTestCase { - private final static String TAG = RegistrationActivityTest.class.getSimpleName(); - - public RegistrationActivityTest() { - super(); - } - - @SuppressWarnings("unchecked") - public void testRegistrationButtons() throws Exception { - waitOn(RegistrationActivity.class); - onView(withId(R.id.registerButton)).check(matches(isDisplayed())); - onView(withId(R.id.skipButton)).check(matches(isDisplayed())).perform(click()); - } -} diff --git a/androidTest/org/thoughtcrime/securesms/service/MmsReceiverTest.java b/androidTest/org/thoughtcrime/securesms/service/MmsReceiverTest.java deleted file mode 100644 index 9b81712126..0000000000 --- a/androidTest/org/thoughtcrime/securesms/service/MmsReceiverTest.java +++ /dev/null @@ -1,28 +0,0 @@ -package org.thoughtcrime.securesms.service; - -import android.content.Intent; -import android.test.InstrumentationTestCase; - -import static org.fest.assertions.api.Assertions.*; - -public class MmsReceiverTest extends InstrumentationTestCase { - - private MmsReceiver mmsReceiver; - - public void setUp() throws Exception { - super.setUp(); - mmsReceiver = new MmsReceiver(getInstrumentation().getContext()); - } - - public void tearDown() throws Exception { - - } - - public void testProcessMalformedData() throws Exception { - Intent intent = new Intent(); - intent.setAction(SendReceiveService.RECEIVE_MMS_ACTION); - intent.putExtra("data", new byte[]{0x00}); - mmsReceiver.process(null, intent); - } - -}