码迷,mamicode.com
首页 > 编程语言 > 详细

spring boot 单元测试

时间:2018-09-30 14:47:13      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ring   throws   ssr   ice   more   spring   web   red   end   

Java新手 纯记录

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = OutDemoApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@Slf4j
public class ServiceTest extends TestCase {
    @Autowired
    private DemoService demoService;
    
    @BeforeClass
    public static void init() {
        //初始化一些东西 比如环境变量
    }

    @Test
    public void Test1() throws ParseException {
        DemoReq demoReq = new DemoReq();
        demoService.dosomething(demoReq);
    }
}

spring boot 单元测试

标签:ring   throws   ssr   ice   more   spring   web   red   end   

原文地址:https://www.cnblogs.com/cqvoip/p/9728866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!