mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
29 lines
708 B
Java
29 lines
708 B
Java
|
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);
|
||
|
}
|
||
|
|
||
|
}
|