JUnit Unit Test Transaction Auto Rollback

Source: Internet
Author: User
Tags assert rollback

JUnit unit test transactions are automatically rolled back. Implemented by @rollback (true) annotation, the default is true, the transaction is rolled back, and can not be written. False, the transaction is not rolled back and the data is written to the database.

Instance:

Package com.xiaolyuh.service;

Import Java.util.Date;
Import Org.junit.Assert;
Import Org.junit.Test;
Import Org.junit.runner.RunWith;
Import Org.slf4j.Logger;
Import Org.slf4j.LoggerFactory;
Import org.springframework.beans.factory.annotation.Autowired;
Import Org.springframework.boot.test.context.SpringBootTest;
Import Org.springframework.test.annotation.Rollback;
Import Org.springframework.test.context.junit4.SpringRunner;

Import org.springframework.transaction.annotation.Transactional;
Import Com.alibaba.fastjson.JSON;
Import Com.xiaolyuh.entity.RewardCouponDetail;

Import Com.xiaolyuh.mapper.RewardCouponDetailMapper; @RunWith (Springrunner.class) @SpringBootTest public class rewardcoupondetailservicetest{private static final Logger Lo
	
	Gger = Loggerfactory.getlogger (Rewardcoupondetailservicetest.class);
    
    
	@Autowired private Rewardcoupondetailmapper Rewardcoupondetailmapper; @Test @Transactional @Rollback (TRUE)/transaction automatically rollback, the default is true. You can not write public void Testcustomer () {REwardcoupondetail rewardcoupondetail = new Rewardcoupondetail ();
		Rewardcoupondetail.setrewardinfoid (1L);
		Rewardcoupondetail.setcouponid ("1");
		Rewardcoupondetail.setcoupondetailid (1L);
		Rewardcoupondetail.setcreatetime (New Date ());
		Rewardcoupondetailmapper.insert (Rewardcoupondetail);
		Logger.info (json.tojsonstring (Rewardcoupondetail));
	Assert.assertnotnull (Rewardcoupondetail.getid ());
 }
	
}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.