luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.hollywood.manage;
 
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.security.crypto.password.PasswordEncoder;
 
/**
 * @Description
 * @Author xiaochen
 * @Date 2022/6/23/02315:40
 */
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = ManageApplication.class)
public class ManageTest {
 
    @Autowired
    public PasswordEncoder passwordEncoder;
 
    @Test
    public void update() {
 
    }
 
    @Test
    public void getMonth() {
    }
 
 
}