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>
しかし、それでも何もありません、私が欠けているものはありますか?
乾杯、セバスティアーノ