标签:autowired mode 启动 ice public str with 使用 col
本次测试使用的是springboot 中的测试
1.(对service 的测试)下面的测试。将会启动容器进行测试
@RunWith(SpringRunner.class) @SpringBootTest(webEnvironment= SpringBootTest.WebEnvironment.RANDOM_PORT) // 随机端口 public class MyTest { @Autowired EquipmentFaultService service; @Test public void mytest(){ EquipmentFaultModel equipmentFaultById = service.getEquipmentFaultById("619d79f2-6c77-42a3-b0e9-49c5ebf2fdef"); Assert.assertNotNull(equipmentFaultById); } }
2.
标签:autowired mode 启动 ice public str with 使用 col
原文地址:https://www.cnblogs.com/chengyangyang/p/11040563.html