I use JaCOCO to see code coverage (and use the Intellij plugin for it). I have @SneakyThrows of lombok on my code. Since @SneakyThrows does nothing but converting a checked exception to a unchecked exception, I hope it does not affect the code coverage.
However, it seems that it drops the code coverage:
I have tried to add lombok.addLombokGeneratedAnnotation = true to my lombok.config, but no use.
Thanks for any suggestions!
