mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-14 14:20:33 +05:30
Add test to check whether hardcoded client version is still valid
This commit is contained in:
parent
b89b6b1db2
commit
beb07a4852
@ -0,0 +1,22 @@
|
|||||||
|
package org.schabi.newpipe.extractor.services.youtube;
|
||||||
|
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.schabi.newpipe.DownloaderTestImpl;
|
||||||
|
import org.schabi.newpipe.extractor.NewPipe;
|
||||||
|
import org.schabi.newpipe.extractor.services.youtube.linkHandler.YoutubeParsingHelper;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
public class YoutubeParsingHelperTest {
|
||||||
|
@BeforeClass
|
||||||
|
public static void setUp() {
|
||||||
|
NewPipe.init(DownloaderTestImpl.getInstance());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testIsHardcodedClientVersionValid() {
|
||||||
|
assertTrue("Hardcoded client version is not valid anymore",
|
||||||
|
YoutubeParsingHelper.isHardcodedClientVersionValid());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user