1

実行時にテストクラスの名前を変更できる方法はありますか?

[裏話: テストに変換され、おそらくパラメーター化されるファイルがたくさんありますが、すべてのファイルは同じテスト ロジックを使用しており、その名前を取得するためだけにすべてのファイルに新しいクラスを作成するつもりはありません]

最新の Junit 4.11 を使用しています。

4

1 に答える 1

1

JUnit has introduced naming of parameterized tests. The original bug request for this feature is here: https://github.com/KentBeck/junit/issues/44. From some Googling, I believe this is present in JUnit 4.11 (but I'm not 100% sure).

If your files are just test data being fed into a number of parameterized tests, I can see it would be easy to add a name attribute into the mix to give you the functionality you desire.

于 2012-09-03T09:03:27.977 に答える