1

I want to measure the code coverage of an unit test with aqtime. The application to test uses a lot of boost functionality. Now these boost methods appear in the test report. With these methods in the report, it is nearly impossible to interpret it since I did not test boost but the classes using boost.

Is there a fast way to exclude boost from the code coverage?

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Tobias Langner
  • 10,634
  • 6
  • 46
  • 76

1 Answers1

1

I found a way:

  • run with everything

  • create a filter that includes everything you don't want

  • select all elements of the filter

  • create an excluding area for all those elements

  • run again and refine.

Tobias Langner
  • 10,634
  • 6
  • 46
  • 76