2

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?

Boris Parnikel
  • 863
  • 1
  • 7
  • 15

1 Answers1

1

Found a solution:

mvn scoverage:package // creates classes prepared to coverage instrumentation
mvn scoverage:report // creates coverage report
Boris Parnikel
  • 863
  • 1
  • 7
  • 15