问答详情
源自:2-7 单元测试

junit不能用 4.10有runwith 4.12就是没有runwith 怎么破?

http://img2.mukewang.com/5aa89a00000155a007250203.jpghttp://img2.mukewang.com/5aa89a32000187a006340245.jpg

junit不能用 4.10有runwith 4.12就是没有runwith 怎么破?


提问者:lhflying 2018-03-14 11:44

个回答

  • 慕沐0129647
    2018-03-14 19:47:04

    在IDEA中改了项目的pom文件里的依赖需要执行以下步骤,才能使你的更改生效

    http://img3.mukewang.com/5aa90b6c0001c56b07400259.jpg

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>

    用这个也可以的