5 respuestas

The Managed Package code has no bearing the actual code coverage in your org. They are run separately from your own unit tests. In order to improve your own code coverage beyond 75%, yes, I would take a look at files you could remove. You'll likely need to do this with destructiveChanges.xml (google it for more information). Since code coverage is calculated by lines covered / total lines, you're percentage will not necessarily increase by 1% of course, it may be less it may be more. I'd also take a look at your other classes and determine ways you could improve code coverage across them. (For instance, you can sort the classes by file size, and look at the % of code covered.)Good luck,