I have a multimodule maven project on Scala. I want to write an integration test in module A that calls a method XXX of some class from this module. This method in its turn calls a method YYY from some class in another module B.
As a result of scoverage:report
I want to see that coverage for both XXX and YYY is not empty.
However currently YYY is shown as not covered (coverage is 0%)
Is it possible to configure scoverage
for that?