Merge pull request #4774 from damoasda/robolectric-DownloadRequestTest

Run DownloadRequestTest with Robolectric
This commit is contained in:
ByteHamster 2020-12-20 18:51:46 +01:00 committed by GitHub
commit dcd40d4cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,9 @@ package de.danoeh.antennapod.core.service.download;
import android.os.Bundle;
import android.os.Parcel;
import androidx.test.filters.SmallTest;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
import java.util.ArrayList;
@ -13,7 +13,7 @@ import de.danoeh.antennapod.core.feed.FeedFile;
import static org.junit.Assert.assertEquals;
@SmallTest
@RunWith(RobolectricTestRunner.class)
public class DownloadRequestTest {
@Test