mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-28 16:00:33 +05:30
Update BaseExtractorTests image methods' name
Also suppress unused warnings in BaseStreamExtractorTest, like it is done on other BaseExtractorTests interfaces.
This commit is contained in:
parent
e16d521b7b
commit
70fb3aa38e
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user