I am quite new to Ceedling and unit testing, so bear with me for a moment ...
The code that I am testing contains macros in a header file in the form:
#define DO_Something_with_a_MCU_Registers() \
(<does_something_on_a_MCU_register>)
The written unit tests are currently working. However I would like to have a coverage report with GCOV for this particular header file. At the moment the GCOV report is empty. What I would like to see/prove is that my tests are executing the macros. I do understand this poses a challenge, as the macros are included in the unit test as part of the pre-processor. But I would like to hear if there are other options or ideas?