NewPipeExtractor/extractor/src/test/java/org/schabi/newpipe/extractor/services/BasePlaylistExtractorTest.java

12 lines
429 B
Java

package org.schabi.newpipe.extractor.services;
@SuppressWarnings("unused")
public interface BasePlaylistExtractorTest extends BaseListExtractorTest {
void testThumbnailUrl() throws Exception;
void testBannerUrl() throws Exception;
void testUploaderUrl() throws Exception;
void testUploaderName() throws Exception;
void testUploaderAvatarUrl() throws Exception;
void testStreamCount() throws Exception;
}