Renamed GfycatRipperTest unit tests

This commit is contained in:
cyian-1756 2018-08-23 19:16:32 -04:00
parent 82bf98178e
commit 4f5a8b22aa

View File

@ -11,7 +11,7 @@ public class GfycatRipperTest extends RippersTest {
* Rips correctly formatted URL directly from Gfycat
* @throws IOException
*/
public void GfycatGoodURL() throws IOException{
public void testGfycatGoodURL() throws IOException{
GfycatRipper ripper = new GfycatRipper(new URL("https://gfycat.com/TemptingExcellentIchthyosaurs"));
testRipper(ripper);
}
@ -19,7 +19,7 @@ public class GfycatRipperTest extends RippersTest {
* Rips badly formatted URL directly from Gfycat
* @throws IOException
*/
public void GfycatBadURL() throws IOException {
public void testGfycatBadURL() throws IOException {
GfycatRipper ripper = new GfycatRipper(new URL("https://gfycat.com/gifs/detail/limitedtestyamericancrow"));
testRipper(ripper);
}