org.springframework.boot
spring-boot-starter-test
test
【Springboot单元测试】
package test;
import cn.test.Application;
import cn.test.bean.User;
import cn.test.mapper.UserMapper;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import org.springframework.transaction.annotation.Transactional;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
@EnableTransactionManagement //事务回滚,单元测试类不对数据库操作
@Transactional
public class JunitT {
@Autowired
private UserMapper userMapper;
@Test
public void test1(){
User user=new User();
user.setUsername("huang");
userMapper.insertSelective(user);
// 注意使用的tkmybatis,这里想要获得user.getId()必须在实体类的主键id上加注解
//@GeneratedValue(generator = "JDBC")//加上注解
System.out.println(user.getId());
Assert.assertTrue(user.getId().equals("20"));
}
}
推荐阅读
- 手写hashmap
- activiti|activiti课程导学(一)(慕课网)
- JAVA|intellij idea使用技巧汇总
- JAVA|Spring boot和Vue.js实现基于oauth2授权码模式的认证 (一)
- java|你知道哪些开源基金会()
- java|世界最著名的 16 个开源软件基金会,你认识哪几个呢()
- 资讯|世界上最大的开源基金会 Apache 是如何运作的()
- 冒泡排序(Bubble Sort)
- java|2022年深圳杯数学建模