0

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>

しかし、それでも何もありません、私が欠けているものはありますか?

乾杯、セバスティアーノ

4

1 に答える 1

0

実際には、その依存関係を使用して機能します。質問を閉じることができると思います。

于 2011-05-16T15:03:13.587 に答える