UserServiceTest.java 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.nokia.service;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. import com.nokia.pojo.User;
  6. @SpringBootTest
  7. public class UserServiceTest {
  8. @Autowired
  9. private UserService userService;
  10. @Test
  11. void testAdd() {
  12. User userEntity = new User();
  13. userEntity.setLoginName("lizh231");
  14. userEntity.setUserName("李志辉");
  15. }
  16. @Test
  17. void testDelete() {
  18. }
  19. @Test
  20. void testGetByLoginName() {
  21. User user = userService.getByLoginName("test_abc");
  22. System.out.println(user);
  23. }
  24. @Test
  25. void testAddRole() {
  26. // User user = userService.getByLoginName("test_123");
  27. // Role role = roleService.getByRoleName("工单处理(建设处理)");
  28. }
  29. @Test
  30. void testSelect() {
  31. }
  32. @Test
  33. void testUpdate() {
  34. }
  35. }