I use EclEmma to check the coverage of my test scripts and the use of tests in my project. I have a Base package that contains the most common classes and usage tests. The coverage is as follows:

I want to exclude usage tests (e.g. BugReportTest) from the coverage calculation. But I want the tests inside it to be considered. I know how to exclude the whole class from coverage, but if I do, my coverage of% drops because the actual tests that check which lines of my code are being checked are forgotten. These usage tests should, if necessary, remain in the base package due to privacy.