You can easily print the results of the methods on the server-side
itself.
サーバー側自身のメソッドの結果は簡単に出力できます。
You can also start Tomcat in debug mode (Run/debug
project). This way, you can stop at breakpoints on methods
that are executed on the server side (void testXXX() for
example)
Tomcat をデバッグモードで起動することもできます。
(Run/debug project)
この方法により、
サーバー側で実行されるメソッドをブレークポイントで停止させることもできます。
(例えば、void testXXX() など)
If you right click on the file containing your test case and click
on debug, you can stop at breakpoints on methods that
are executed on the client side like
void endXXX(WebResponse) or
void beginXXX(WebRequest)
自分のテストケースが入っているファイルを右クリックし、
debug をクリックした場合、
void endXXX(WebResponse) や、
void beginXXX(WebRequest) のようにクライアント側で実行されたメソッドにおいて、ブレークポイントで停止させることができます。