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

18 lines
400 B
Java

package org.schabi.newpipe.extractor.services;
import org.junit.jupiter.api.Test;
@SuppressWarnings("unused")
public interface BaseExtractorTest {
@Test
void testServiceId() throws Exception;
@Test
void testName() throws Exception;
@Test
void testId() throws Exception;
@Test
void testUrl() throws Exception;
@Test
void testOriginalUrl() throws Exception;
}