I'm using Eclipse Che 7 hosted on openshift.io for developing a simple java project. It's possible to debug tests? I can't find a way to launch them. If I open the test view there is
Asked
Active
Viewed 303 times
2 Answers
2
It is always possible to use a workaround:
- Start test in the terminal
mvn clean install -Dtest=AppTest -Dmaven.surefire.debug
- Start a debug session using the following configuration:
{
"type": "java",
"name": "Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 5005
}

tolusha
- 99
- 3
-
oh thank you this evening i will try this workaround! – Mattia Dec 10 '19 at 15:08