Junit单元测试实例
1、非注解
public class Test { @org.junit.Test public void testPrice() { ClassPathXmlApplicationContext beans = new ClassPathXmlApplicationContext(new String[]{"spring.xml","spring-mybatis.xml"} ); IStationService stationService = (IStationService) beans.getBean("stationService"); Double s=stationService.calcuStationEndPrice("k596", "砀山", "芜湖"); System.out.println(s); } }
2、注解
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={"classpath:spring.xml","classpath:spring-mybatis.xml"}) public class Test { @Autowired private IStationService stationService; @org.junit.Test public void testPrice() { Double s=stationService.calcuStationEndPrice("k596", "砀山", "芜湖"); System.out.println(s); } }
这里更推荐使用注解的方法。
❤本博客只适用于研究学习为目的,大多为学习笔记,如有错误欢迎指正,如有误导敬请谅解(本人尽力保证90%的验证和10%的猜想)。
❤如果这篇文章对你有一点点的帮助请给一份推荐! 谢谢!你们的鼓励是我继续前进的动力。