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

22 lines
555 B
Java

package org.schabi.newpipe.extractor.services;
import org.junit.jupiter.api.Test;
@SuppressWarnings("unused")
public interface BaseChannelExtractorTest extends BaseExtractorTest {
@Test
void testDescription() throws Exception;
@Test
void testAvatarUrl() throws Exception;
@Test
void testBannerUrl() throws Exception;
@Test
void testFeedUrl() throws Exception;
@Test
void testSubscriberCount() throws Exception;
@Test
void testVerified() throws Exception;
@Test
void testTabs() throws Exception;
}