Reputation: 9922
within eclipse running same result will be output console and testng plugin view.most of time,I will switch back to testng plugin view to check result.so is it possible to stop to output running result to eclipse console view?Or let user to choose which view be current view(or called default result checking view).
Upvotes: 1
Views: 1053
Reputation: 18224
Not sure if I understand the question correctly, but you can disable automatic showing of the console view by unchecking icons and
.
Alternatively you can discard all your output just by redirecting it to a /dev/null
(if you are on UNIX based system) in Run Configurations > TestNG > your run config > Common.
However the easiest way is to move the test view to a side panel rather than the same area where the console is.
Upvotes: 1