[YouTube] Test that no banner is returned for carouselHeaderRenders

This commit is contained in:
AudricV 2023-08-01 22:19:43 +02:00
parent f1fa84b4e3
commit bb1ab166bf
No known key found for this signature in database
GPG Key ID: DA92EC7905614198

View File

@ -2,6 +2,7 @@ package org.schabi.newpipe.extractor.services.youtube;
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail; import static org.junit.jupiter.api.Assertions.fail;
@ -720,7 +721,8 @@ public class YoutubeChannelExtractorTest {
@Test @Test
public void testBannerUrl() throws Exception { public void testBannerUrl() throws Exception {
// CarouselHeaderRender does not contain a banner // CarouselHeaderRenders do not contain a banner
assertNull(extractor.getBannerUrl());
} }
@Test @Test