wuxw
2019-05-07 80f9d76904c5d28c77a4d9bbaca9daa328e7806c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.java110.core.factory;
 
import org.junit.Test;
 
import static org.junit.Assert.*;
 
/**
 * Created by wuxw on 2019/3/20.
 */
public class AuthenticationFactoryTest {
    @Test
    public void passwdMd5() throws Exception {
        System.out.println(AuthenticationFactory.passwdMd5("admin"));
    }
 
}