697071727374757677
public void testNoCrypt() { // The NoCrypt implementation does not modify the string at all final ICrypt crypt = new NoCrypt(); assertEquals("test", crypt.encryptUrlSafe("test")); assertEquals("test", crypt.decryptUrlSafe("test")); } }
707172737475767778
717273747576777879
646566676869707172
public void noCrypt() { // The NoCrypt implementation does not modify the string at all final ICrypt crypt = new NoCrypt(); assertEquals("test", crypt.encryptUrlSafe("test")); assertEquals("test", crypt.decryptUrlSafe("test")); } }