易博与数据驱动开发



在最新版本的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>

但我无法让"哪里"/"示例"语句工作。我尝试添加依赖项,例如

         <dependency>
           <groupId>org.easyb</groupId>
           <artifactId>easyb</artifactId>
           <version>0.9.8.2</version>
        </dependency>

但仍然一无所有,我错过了什么吗?

干杯塞巴斯蒂亚诺

实际上它使用该依赖项起作用,我想我们可以关闭这个问题。

相关内容

  • 没有找到相关文章

最新更新