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"));
| }
|
| }
|
|