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

17 lines
372 B
Java
Raw Normal View History

2018-03-04 21:26:13 +01:00
package org.schabi.newpipe.extractor.services;
import org.junit.jupiter.api.Test;
2018-03-04 21:26:13 +01:00
public interface BaseExtractorTest {
@Test
2018-03-04 21:26:13 +01:00
void testServiceId() throws Exception;
@Test
2018-03-04 21:26:13 +01:00
void testName() throws Exception;
@Test
2018-03-04 21:26:13 +01:00
void testId() throws Exception;
@Test
void testUrl() throws Exception;
@Test
2018-03-04 21:26:13 +01:00
void testOriginalUrl() throws Exception;
}