springboot 下测试 service中的方法
2019-03-20 10:34 如是我所闻 阅读(4297) 评论(0) 编辑 收藏 举报@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = AccountPlatApplication.class) //AccountPlatApplication 为启动类
public class NCTest2 {
@Autowired
private NcService ncService; //注入调用方法所在的类
@Test
public void test1() { //执行方法
ncService.enterAccount();
}
}