I have few methods in my scala play framework application that I want to be excluded from scoverage report. Is there any way to achieve this? May be similar to using @Generated
annotations for methods to be excluded as for Jacoco 0.8.2 release.
Example:
class TestClass {
@Generated
def methodN = {}
}
Or may be use something like excludeMethods += "TestClass.methodN, TestClass.methodX"
in build.sbt file?