Fix DefaultAnalyticsCollectorTest failure when run with JaCoCo

#minor-release

PiperOrigin-RevId: 430189385
This commit is contained in:
ibaker 2022-02-22 13:34:24 +00:00 committed by Ian Baker
parent e8977d00c5
commit 42340bf5ac

View File

@ -192,10 +192,18 @@ public final class DefaultAnalyticsCollectorTest {
private EventWindowAndPeriodId window0Period1Seq0;
private EventWindowAndPeriodId window1Period0Seq1;
/**
* Verify that {@link DefaultAnalyticsCollector} explicitly overrides all {@link Player.Listener}
* methods.
*/
@Test
public void defaultAnalyticsCollector_overridesAllPlayerListenerMethods() throws Exception {
// Verify that AnalyticsCollector forwards all Player.Listener methods to AnalyticsListener.
for (Method method : Player.Listener.class.getDeclaredMethods()) {
if (method.isSynthetic()) {
// JaCoCo inserts synthetic methods. See "My code uses reflection. Why does it fail when I
// execute it with JaCoCo?": https://www.eclemma.org/jacoco/trunk/doc/faq.html
continue;
}
assertThat(
DefaultAnalyticsCollector.class
.getMethod(method.getName(), method.getParameterTypes())