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
|
@Test
|
||||||
void testDescription() throws Exception;
|
void testDescription() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testAvatarUrl() throws Exception;
|
void testAvatars() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testBannerUrl() throws Exception;
|
void testBanners() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testFeedUrl() throws Exception;
|
void testFeedUrl() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
|
@ -4,13 +4,13 @@ import org.junit.jupiter.api.Test;
|
|||||||
|
|
||||||
public interface BasePlaylistExtractorTest extends BaseListExtractorTest {
|
public interface BasePlaylistExtractorTest extends BaseListExtractorTest {
|
||||||
@Test
|
@Test
|
||||||
void testThumbnailUrl() throws Exception;
|
void testThumbnails() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testBannerUrl() throws Exception;
|
void testBanners() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testUploaderName() throws Exception;
|
void testUploaderName() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testUploaderAvatarUrl() throws Exception;
|
void testUploaderAvatars() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testStreamCount() throws Exception;
|
void testStreamCount() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
|
@ -2,6 +2,7 @@ package org.schabi.newpipe.extractor.services;
|
|||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
@SuppressWarnings("unused")
|
||||||
public interface BaseStreamExtractorTest extends BaseExtractorTest {
|
public interface BaseStreamExtractorTest extends BaseExtractorTest {
|
||||||
@Test
|
@Test
|
||||||
void testStreamType() throws Exception;
|
void testStreamType() throws Exception;
|
||||||
@ -10,7 +11,7 @@ public interface BaseStreamExtractorTest extends BaseExtractorTest {
|
|||||||
@Test
|
@Test
|
||||||
void testUploaderUrl() throws Exception;
|
void testUploaderUrl() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testUploaderAvatarUrl() throws Exception;
|
void testUploaderAvatars() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testSubscriberCount() throws Exception;
|
void testSubscriberCount() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
@ -18,9 +19,9 @@ public interface BaseStreamExtractorTest extends BaseExtractorTest {
|
|||||||
@Test
|
@Test
|
||||||
void testSubChannelUrl() throws Exception;
|
void testSubChannelUrl() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testSubChannelAvatarUrl() throws Exception;
|
void testSubChannelAvatars() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testThumbnailUrl() throws Exception;
|
void testThumbnails() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
void testDescription() throws Exception;
|
void testDescription() throws Exception;
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user