left is jacoco, right is idea coverage.
we can look at it, result is not different, actually, we can see that they should be covered.
more information, code line "orderOwnerValidator.validate(orderIntegratedDTO);" throws exceptions by executing test case.
recondition:
1. jacoco agent version 0.8.5, and 0.7.3
2. org.jacoco.report version 0.8.3
3. tcp server mode
JaCoCo determines code execution with so called probes. Probes are inserted into the control flow at certain positions. Code is considered as executed when a subsequent probe has been executed. In case of exceptions such a sequence of instructions is aborted somewhere in the middle and the corresponding line of source code is not marked as covered.
is this the reason, too?