springboot单元测试

springboot对单元测试的支持十分完善,需要引入的jar包


    org.springframework.boot
    spring-boot-starter-test
    test

使用方式:在测试类的类头部需要添加@RunWith(SpringRunner.class)和@SpringBootTest注解,在测试方法的顶端添加@Test即可

@RunWith(SpringRunner.class)
@SpringBootTest
public class SysUserServiceImplTest {
    @Autowired
    private SysUserService sysUserService;
    @Test
    public void queryAllPerms() throws Exception {
        List allPerms = sysUserService.queryAllPerms(1L);
        System.out.println(allPerms);
    }
}    

单元测试参考:springboot(16)Spring Boot使用单元测试

你可能感兴趣的:(高性能)