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() {
|
}
|
|
|
}
|