Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JenkinsでjunitまたはRegressionテストを実行する場合、各テストクラスがヒープ上のすべての変数を削除した後(新しいテストクラスを開始する前)? または最後に削除されますか?
JUnitは、実行されている限り、各テストへの参照を保持します。つまり、テストメソッドごとにテストケースクラスのインスタンスを1つ取得し、これらのインスタンスはJUnitがテスト結果を出力するまで存続します。
メモリが不足した場合は、テストインスタンスのフィールドをメソッドでに設定する必要がありnullます@After。
null
@After