View remote console output

I am running several Junit tests, running test results on a console that is flushed and populated by the current test log. Where will the log file containing previous test logs be stored. Is there any way in eclipse with which I can see such remote logs.

+5
source share
1 answer

Try the following:

  • Open launch configuration
  • Select tab Common
  • In the group, Standard Input and Outputactivate Fileand install the file
  • Check the box Append
  • Run configuration

Thus, everything that is printed on the console will also be printed in this file.

+6
source

All Articles