如何在spring環境中做單元測試

x號開發者發表於2019-01-08

在測試類的上方加入以下註解

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:spring.xml")
public class Test01 {
@Autowired
private AmqSenderService mapper;


@Test
public void test04() {
                // mapper.sendMsg();
}

相關文章