引入了junit为什么还是用不了@Test注解

pom文件明明引入了unit,为什么还是用不了@Test?

配置如下:

<dependency>  
      <groupId>junit</groupId>  
      <artifactId>junit</artifactId>  
      <version>${junit.version}</version>  
      <scope>test</scope>  

原因:上述scope配置了Junit可用的位置,test表示只能在src下的test文件夹下面才可以使用 

 

解决办法:去掉scope配置就可以了 

posted @ 2017-10-25 10:15  yaoh371  阅读(4149)  评论(0编辑  收藏  举报