forked from fanruan/finekit
18 lines
486 B
18 lines
486 B
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")); |
|
} |
|
}
|
|
|