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

11 lines
314 B
Java
Raw Normal View History

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