Skip to main content

IntelliJ

Table of Contents

How can I disable IntelliJ popup documentations?

How can I debug a test run by Maven in IntelliJ IDEA?

How can I disable IntelliJ popup documentations?

26 Nov 2014 - intellij

By default, when you hover the mouse over a variable, IntelliJ shows a popup documentation view, which often hides the popup that shows the value of the variable in debug mode.

To disable the documentation popup, locate the option “Show quick doc on mouse move” in Settings and disable it.

References

How can I debug a test run by Maven in IntelliJ IDEA?

24 Nov 2014 - intellij

Open the Maven Projects view, and then open the Lifecycle tree item. Next, right-click on the test goal to creat a configuration. Add the command-line option -DforkMode=never or -DforkCount=0 to the configuration. Finally, run the configuration in debug mode.

References