1

ReportNGhtml-outputに@TestのtestName-attributeを使用しようとしています。

残念ながらそれは言う:

/**
* The name of the test  this test class should be placed in.  This
* attribute is ignore if @Test is not at the class level.
*/
public String testName() default "";

したがって、testNameは常に空です。

メソッドレベルでこの属性を無視しないようにするには、何を変更する必要がありますか?

知っておくことが重要な場合は、TestNG.xmlスイートを使用してテストを実行しています。

ヒントを喜んで、乾杯!

4

1 に答える 1

2

テストの名前はクラス全体に適用されるため、これをメソッド レベルで指定しても意味がありません。

于 2012-11-08T16:06:22.557 に答える