From 858415e3b1bd0b9d533b78009cc7d07c3d6df6c3 Mon Sep 17 00:00:00 2001 From: andrewlewis Date: Wed, 6 Feb 2019 16:04:58 +0000 Subject: [PATCH] Update test names for attach -> start renaming PiperOrigin-RevId: 232676346 --- .../android/exoplayer2/ext/ima/ImaAdsLoaderTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extensions/ima/src/test/java/com/google/android/exoplayer2/ext/ima/ImaAdsLoaderTest.java b/extensions/ima/src/test/java/com/google/android/exoplayer2/ext/ima/ImaAdsLoaderTest.java index 0b097f26f0..0253e7db13 100644 --- a/extensions/ima/src/test/java/com/google/android/exoplayer2/ext/ima/ImaAdsLoaderTest.java +++ b/extensions/ima/src/test/java/com/google/android/exoplayer2/ext/ima/ImaAdsLoaderTest.java @@ -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);