在最新版本的easyb(0.9.8.2)中,似乎可以使用“where”和“example”语句来进行数据驱动测试。
在我的POM中,我使用的是最新版本的easyb插件
<plugin>
<groupId>org.easyb</groupId>
<artifactId>maven-easyb-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<storyreport>${project.build.directory}/easyb/easyb-stories.txt</storyreport>
<xmlreport>${project.build.directory}/easyb/report.xml</xmlreport>
</configuration>
</plugin>
但我不能让“where”/“example”语句有效。我试图添加一个依赖项,如
<dependency>
<groupId>org.easyb</groupId>
<artifactId>easyb</artifactId>
<version>0.9.8.2</version>
</dependency>
但仍然没有,有什么我想念的吗?
干杯, 塞巴斯蒂亚
答案 0 :(得分:0)
实际上它使用了这种依赖,我想我们可以解决这个问题。