1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-31 17:42:11 +02:00

Merge pull request #630 from cyian-1756/unit-tests

Added base64 unit test
This commit is contained in:
cyian-1756
2018-05-29 23:47:25 -04:00
committed by GitHub

View File

@@ -0,0 +1,11 @@
package com.rarchives.ripme.tst;
import junit.framework.TestCase;
import com.rarchives.ripme.utils.Base64;
public class Base64Test extends TestCase {
public void testDecode() {
assertEquals("test", new String(Base64.decode("dGVzdA==")));
}
}