forked from fanruan/finekit
superman
5 years ago
4 changed files with 30 additions and 2 deletions
@ -0,0 +1,18 @@ |
|||||||
|
package com.fanruan.api.security; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
import com.fr.stable.CommonCodeUtils; |
||||||
|
import org.junit.Assert; |
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
public class SecurityKitTest { |
||||||
|
@Test |
||||||
|
public void passwordDecode(){ |
||||||
|
Assert.assertEquals(SecurityKit.passwordDecode("1234"), CommonCodeUtils.passwordDecode("1234")); |
||||||
|
} |
||||||
|
@Test |
||||||
|
public void passwordEncode(){ |
||||||
|
Assert.assertEquals(SecurityKit.passwordEncode("1234"), CommonCodeUtils.passwordEncode("1234")); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue