I have recently installed IntelliJ IDEA 13.1.4 and the jRebel plugin. I have licensed it ok and created and added configurations in catalina.bat
file.
When running jRebel from within IntelliJ, it seems to be monitoring the correct directories but I get the following message:
0 test class found in package ‘’
This then tells me that it has failed to start.
Does anybody know what I might need to change to get this to work?
Make sure 'app' is selected to run...
I had this same issue and for me it was because TestNG plugin was not installed in Intellij. I did not choose it when installed Intellij and forgot about that.
Make sure your class is declared as public and not 'default'
as opposed to:
When creating a new test class via IntelliJ shortcut the generated class was not declared as public and that caused the error.