1

Eclipse では、Run/Debug configuration の下にオプションがあり、Keep JUnit running after a test when debugging があります。

そのフレーズをグーグルで検索すると、Eclipse のバグ レポート (61174) が 1 つヒットするだけで、マニュアルや説明書などはありません。したがって、2 つの質問があります。

  1. このオプションは何に影響しますか?

  2. このオプションを見つけた理由は、テストの実行を高速化する方法を探していたからです。現在、JUnit の起動には 35 秒かかりますが、実際のテストの実行には通常数秒しかかかりません。テストケースをデバッグし、頻繁に開始/停止する必要がある場合、これは非常に面倒です。JUnit の起動を高速化する方法はありますか?

4

1 に答える 1

0

Yes, I've ran into this myself:

A JUnit launch configuration has a "keep alive" option. If your Java virtual machine supports "hot code replacement" you can fix the code and rerun the test without restarting the full test run. To enable this option select the Keep JUnit running after a test run when debugging checkbox in the JUnit launch configuration.

From the site: http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2FgettingStarted%2Fqs-junit.htm

于 2014-09-17T12:33:24.180 に答える