Hi,
I just started documenting our project using doxygen too, and the
solution is to configure doxygen to expand the TEST macro.
In
# Configuration options related to the preprocessor
Check these options:
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = YES
# make sure doxygen can find the CppUTest headers...
INCLUDE_PATH = @top_srcdir@/deps/cpputest/include
EXPAND_AS_DEFINED = TEST_GROUP \
TEST
Each of these have a descriptive comment in the config file, and are
also in the doxygen documentation.
But these settings should get you off the ground :)
Cheers,
Andreas
2013/1/13 Bas Vodde <
ba...@odd-e.com>: