mirror of
https://github.com/samsonjs/media.git
synced 2026-04-11 12:15:47 +00:00
Move assets from dash to testdata module
PiperOrigin-RevId: 294241169
This commit is contained in:
parent
22ce744095
commit
363599dd54
7 changed files with 7 additions and 5 deletions
|
|
@ -33,6 +33,8 @@ android {
|
|||
}
|
||||
}
|
||||
|
||||
sourceSets.test.assets.srcDir '../../testdata/src/test/assets/'
|
||||
|
||||
testOptions.unitTests.includeAndroidResources = true
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,11 +40,11 @@ import org.xmlpull.v1.XmlPullParserFactory;
|
|||
@RunWith(AndroidJUnit4.class)
|
||||
public class DashManifestParserTest {
|
||||
|
||||
private static final String SAMPLE_MPD = "sample_mpd";
|
||||
private static final String SAMPLE_MPD_UNKNOWN_MIME_TYPE = "sample_mpd_unknown_mime_type";
|
||||
private static final String SAMPLE_MPD_SEGMENT_TEMPLATE = "sample_mpd_segment_template";
|
||||
private static final String SAMPLE_MPD_EVENT_STREAM = "sample_mpd_event_stream";
|
||||
private static final String SAMPLE_MPD_LABELS = "sample_mpd_labels";
|
||||
private static final String SAMPLE_MPD = "mpd/sample_mpd";
|
||||
private static final String SAMPLE_MPD_UNKNOWN_MIME_TYPE = "mpd/sample_mpd_unknown_mime_type";
|
||||
private static final String SAMPLE_MPD_SEGMENT_TEMPLATE = "mpd/sample_mpd_segment_template";
|
||||
private static final String SAMPLE_MPD_EVENT_STREAM = "mpd/sample_mpd_event_stream";
|
||||
private static final String SAMPLE_MPD_LABELS = "mpd/sample_mpd_labels";
|
||||
|
||||
private static final String NEXT_TAG_NAME = "Next";
|
||||
private static final String NEXT_TAG = "<" + NEXT_TAG_NAME + "/>";
|
||||
|
|
|
|||
Loading…
Reference in a new issue