Update BaseExtractorTests image methods' name

Also suppress unused warnings in BaseStreamExtractorTest, like it is done on
other BaseExtractorTests interfaces.
This commit is contained in:
AudricV 2022-08-01 21:07:44 +02:00
parent e16d521b7b
commit 70fb3aa38e
No known key found for this signature in database
GPG Key ID: DA92EC7905614198
3 changed files with 9 additions and 8 deletions

View File

@ -6,9 +6,9 @@ public interface BaseChannelExtractorTest extends BaseExtractorTest {
@Test
void testDescription() throws Exception;
@Test
void testAvatarUrl() throws Exception;
void testAvatars() throws Exception;
@Test
void testBannerUrl() throws Exception;
void testBanners() throws Exception;
@Test
void testFeedUrl() throws Exception;
@Test

View File

@ -4,13 +4,13 @@ import org.junit.jupiter.api.Test;
public interface BasePlaylistExtractorTest extends BaseListExtractorTest {
@Test
void testThumbnailUrl() throws Exception;
void testThumbnails() throws Exception;
@Test
void testBannerUrl() throws Exception;
void testBanners() throws Exception;
@Test
void testUploaderName() throws Exception;
@Test
void testUploaderAvatarUrl() throws Exception;
void testUploaderAvatars() throws Exception;
@Test
void testStreamCount() throws Exception;
@Test

View File

@ -2,6 +2,7 @@ package org.schabi.newpipe.extractor.services;
import org.junit.jupiter.api.Test;
@SuppressWarnings("unused")
public interface BaseStreamExtractorTest extends BaseExtractorTest {
@Test
void testStreamType() throws Exception;
@ -10,7 +11,7 @@ public interface BaseStreamExtractorTest extends BaseExtractorTest {
@Test
void testUploaderUrl() throws Exception;
@Test
void testUploaderAvatarUrl() throws Exception;
void testUploaderAvatars() throws Exception;
@Test
void testSubscriberCount() throws Exception;
@Test
@ -18,9 +19,9 @@ public interface BaseStreamExtractorTest extends BaseExtractorTest {
@Test
void testSubChannelUrl() throws Exception;
@Test
void testSubChannelAvatarUrl() throws Exception;
void testSubChannelAvatars() throws Exception;
@Test
void testThumbnailUrl() throws Exception;
void testThumbnails() throws Exception;
@Test
void testDescription() throws Exception;
@Test