只需一步,快速开始
微信登录,快人一步
手机号码,快捷登录
签到天数: 1050 天
连续签到: 1 天
[LV.10]测试总司令
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
/** * SpringJUnit4ClassRunner.class:Spring运行环境 * JUnit4.class:JUnit运行环境 * SpringRunner.class:Spring Boot运行环境 */ @RunWith(SpringRunner.class) //标记为当前类为SpringBoot测试类,加载项目的ApplicationContext上下文环境 @SpringBootTest class SpringbootDemoApplicationTests { @Test void contextLoads() { } @Resource private DemoController demoController; @Test public void testDemoController(){ String s = demoController.helloBoot(); System.out.println(s); } }
您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing
使用道具 举报
本版积分规则 发表回复
查看 »
小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 ) 关于我们
GMT+8, 2024-11-22 21:08 , Processed in 0.065859 second(s), 24 queries .
Powered by Discuz! X3.2
© 2001-2024 Comsenz Inc.