mirror of
https://github.com/samsonjs/media.git
synced 2026-03-30 10:15:48 +00:00
Update test names for attach -> start renaming
PiperOrigin-RevId: 232676346
This commit is contained in:
parent
73813b9b11
commit
2e9ef8abeb
1 changed files with 4 additions and 4 deletions
|
|
@ -109,7 +109,7 @@ public class ImaAdsLoaderTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testAttachPlayer_setsAdUiViewGroup() {
|
||||
public void testStart_setsAdUiViewGroup() {
|
||||
setupPlayback(CONTENT_TIMELINE, PREROLL_ADS_DURATIONS_US, PREROLL_CUE_POINTS_SECONDS);
|
||||
imaAdsLoader.start(adsLoaderListener, adUiViewGroup);
|
||||
|
||||
|
|
@ -117,7 +117,7 @@ public class ImaAdsLoaderTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testAttachPlayer_updatesAdPlaybackState() {
|
||||
public void testStart_updatesAdPlaybackState() {
|
||||
setupPlayback(CONTENT_TIMELINE, PREROLL_ADS_DURATIONS_US, PREROLL_CUE_POINTS_SECONDS);
|
||||
imaAdsLoader.start(adsLoaderListener, adUiViewGroup);
|
||||
|
||||
|
|
@ -128,14 +128,14 @@ public class ImaAdsLoaderTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testAttachAfterRelease() {
|
||||
public void testStartAfterRelease() {
|
||||
setupPlayback(CONTENT_TIMELINE, PREROLL_ADS_DURATIONS_US, PREROLL_CUE_POINTS_SECONDS);
|
||||
imaAdsLoader.release();
|
||||
imaAdsLoader.start(adsLoaderListener, adUiViewGroup);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAttachAndCallbacksAfterRelease() {
|
||||
public void testStartAndCallbacksAfterRelease() {
|
||||
setupPlayback(CONTENT_TIMELINE, PREROLL_ADS_DURATIONS_US, PREROLL_CUE_POINTS_SECONDS);
|
||||
imaAdsLoader.release();
|
||||
imaAdsLoader.start(adsLoaderListener, adUiViewGroup);
|
||||
|
|
|
|||
Loading…
Reference in a new issue