mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Remove ShadowLog references from tests
These were accidentally submitted after being added for local debugging. PiperOrigin-RevId: 636865825
This commit is contained in:
parent
db6144e7dd
commit
08d1eb4376
3 changed files with 0 additions and 11 deletions
|
|
@ -43,7 +43,6 @@ import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.robolectric.shadows.ShadowLog;
|
|
||||||
|
|
||||||
/** Tests {@link DownloadManager}. */
|
/** Tests {@link DownloadManager}. */
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
|
|
@ -74,7 +73,6 @@ public class DownloadManagerTest {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
ShadowLog.stream = System.out;
|
|
||||||
testThread = new DummyMainThread();
|
testThread = new DummyMainThread();
|
||||||
setupDownloadManager(/* maxParallelDownloads= */ 100);
|
setupDownloadManager(/* maxParallelDownloads= */ 100);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,6 @@ import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.mockito.MockitoAnnotations;
|
import org.mockito.MockitoAnnotations;
|
||||||
import org.robolectric.shadows.ShadowLog;
|
|
||||||
|
|
||||||
/** Tests {@link DownloadManager}. */
|
/** Tests {@link DownloadManager}. */
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
|
|
@ -75,7 +74,6 @@ public class DownloadManagerDashTest {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
ShadowLog.stream = System.out;
|
|
||||||
testThread = new DummyMainThread();
|
testThread = new DummyMainThread();
|
||||||
Context context = ApplicationProvider.getApplicationContext();
|
Context context = ApplicationProvider.getApplicationContext();
|
||||||
tempFolder = Util.createTempDirectory(context, "ExoPlayerTest");
|
tempFolder = Util.createTempDirectory(context, "ExoPlayerTest");
|
||||||
|
|
|
||||||
|
|
@ -38,10 +38,8 @@ import com.google.common.collect.Iterables;
|
||||||
import com.google.common.primitives.Bytes;
|
import com.google.common.primitives.Bytes;
|
||||||
import com.google.common.primitives.UnsignedBytes;
|
import com.google.common.primitives.UnsignedBytes;
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.robolectric.shadows.ShadowLog;
|
|
||||||
|
|
||||||
/** Tests for {@link Cea708Decoder}. */
|
/** Tests for {@link Cea708Decoder}. */
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
|
|
@ -51,11 +49,6 @@ public class Cea708DecoderTest {
|
||||||
private static final byte CHANNEL_PACKET_DATA = 0x6;
|
private static final byte CHANNEL_PACKET_DATA = 0x6;
|
||||||
private static final byte CHANNEL_PACKET_END = 0x2;
|
private static final byte CHANNEL_PACKET_END = 0x2;
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setupLogging() {
|
|
||||||
ShadowLog.stream = System.out;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void singleServiceAndWindowDefinition() throws Exception {
|
public void singleServiceAndWindowDefinition() throws Exception {
|
||||||
Cea708Decoder cea708Decoder =
|
Cea708Decoder cea708Decoder =
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue