maven 不从命令行检测测试
Posted
技术标签:
【中文标题】maven 不从命令行检测测试【英文标题】:maven does not detect tests from the command line 【发布时间】:2021-01-22 10:42:33 【问题描述】:我有一个带有此测试的 Spring MVC 项目(Java 平台的应用程序框架和控制容器反转):
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations =
"classpath:servlet.xml"
)
public class PastisControllerTests
@Autowired
private WebApplicationContext wac;
private MockMvc mockMvc;
@Before
public void setup()
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build();
@Test
public void should_WhenParams_OK() throws Exception
mockMvc.perform(get("/user/2")
.param("date", "01122020")
.param("organisationId", "9")
.contentType(APPLICATION_JSON))
.andExpect(status().isOk());
..
但是当我从命令行运行mvn test
时,没有执行任何测试
【问题讨论】:
添加 pom.xml。特别是该部分与测试/surefire 插件有关。也许您对测试类名称有一些配置? 如果你能接受我的回答那就太好了...... 【参考方案1】:问题出在这里:PastisControllerTests
Test
,而不是 Tests
,是 Maven 开箱即用识别它所需的名称组件。否则,您需要to override the surefire plugin's behavior。
【讨论】:
以上是关于maven 不从命令行检测测试的主要内容,如果未能解决你的问题,请参考以下文章