我正在尝试开始使用黄瓜,但是我似乎无法弄清为什么无法识别* .feature文件。
这是我到目前为止所做的:
Pom文件:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>untitled1</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-junit -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-junit</artifactId>
<version>4.8.0</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.jayway.restassured/rest-assured -->
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
然后,我在test \ java下制作了一个名为features的程序包,当我制作* .feature文件时,在该程序包中带有一个“?”它旁边没有打开,这应该是黄瓜锉,对吗?
我已经编译了整个程序,没有错误
最佳答案
您使用的是Cucumber的最新版本(thnx!),有时IDE插件需要一些时间才能赶上:
1.尝试升级您的IDE和插件。
2.在YouTrack上搜索与Cucumber插件相关的已知问题(并对其进行投票!),或者创建一个(如果尚不存在的话)。
3.降级到与您的IDE一起使用的Cucumber稍旧的版本。