引入了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配置就可以了 

原文地址:https://www.cnblogs.com/yaomajor/p/7727454.html