init
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.yupi.springbootinit.service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
/**
|
||||
* 用户服务测试
|
||||
*
|
||||
* @author <a href="https://github.com/liyupi">程序员鱼皮</a>
|
||||
* @from <a href="https://yupi.icu">编程导航知识星球</a>
|
||||
*/
|
||||
@SpringBootTest
|
||||
public class UserServiceTest {
|
||||
|
||||
@Resource
|
||||
private UserService userService;
|
||||
|
||||
@Test
|
||||
void userRegister() {
|
||||
String userAccount = "yupi";
|
||||
String userPassword = "";
|
||||
String checkPassword = "123456";
|
||||
try {
|
||||
long result = userService.userRegister(userAccount, userPassword, checkPassword);
|
||||
Assertions.assertEquals(-1, result);
|
||||
userAccount = "yu";
|
||||
result = userService.userRegister(userAccount, userPassword, checkPassword);
|
||||
Assertions.assertEquals(-1, result);
|
||||
} catch (Exception e) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user