# 依赖

  • spring-boot-stater-test
  • Junit Java常用的测试模块

# 注解

  • @SpringbootTest 用于启动Spring上下文(Spring程序)
  • @Test 让Idae识别该类/方法为一个测试单元
@SpringbootTest
public class UserControllerTest {
    @Test
    public void login(){
        // DO
    }
}