「记录」mvc中配置juint4测试的方法

情景

在第一个项目里配置junit4方法是跟着老师做的,忘记了。今天又遇到了自己做了一次,记录一下。

方法

在 test包 中新建一个BaseTest,和诸如dao、service的包同级。 把配置在这里写好,其它类继承即可。

具体流程

  • 在maven中引入依赖;

<dependency>
    <groupId>junitgroupId>
    <artifactId>junitartifactId>
    <version>4.12version>
    <scope>testscope>
dependency>



<dependency>
    <groupId>org.springframeworkgroupId>
    <artifactId>spring-testartifactId>
    <version>4.3.10.RELEASEversion>
    <scope>testscope>
dependency>
  • 配置一个BaseTest;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:/你自己的.xml", "classpath:/你自己的.xml"})
public class BaseTest {

}
  • 其它测试类继承BaseTest进行测试。
    这里就不赘述了。

你可能感兴趣的:(SpringMVC)