package com.genersoft.iot.vmp.service.impl; import com.genersoft.iot.vmp.service.IRoleService; import com.genersoft.iot.vmp.service.IUserService; import com.genersoft.iot.vmp.storager.dao.dto.Role; import com.genersoft.iot.vmp.storager.dao.dto.User; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import javax.annotation.Resource; import java.text.SimpleDateFormat; import java.util.List; @SpringBootTest @RunWith(SpringRunner.class) class RoleServiceImplTest { @Resource private IRoleService roleService; SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); @org.junit.jupiter.api.Test void getAllUser() { List all = roleService.getAll(); Role roleById = roleService.getRoleById(1); } @org.junit.jupiter.api.Test void add() { for (int i = 0; i < 10; i++) { Role role = new Role(); role.setName("test+" + i); role.setAuthority("adadadda"); role.setCreateTime(format.format(System.currentTimeMillis())); role.setUpdateTime(format.format(System.currentTimeMillis())); roleService.add(role); } } @org.junit.jupiter.api.Test void delete() { roleService.delete(20); } @org.junit.jupiter.api.Test void update() { Role role = new Role(); role.setId(21); role.setName("TTTTTT"); role.setAuthority("adadadda"); roleService.update(role); } }