Re: [Doxygen-users] Using \test
Brought to you by:
dimitri
From: Martin J. <mar...@is...> - 2008-10-22 13:43:13
|
On 22.10.2008 15:22, Mathieu Malaterre wrote: > I do not understand how am I supposed to use the \test doxygen > command. I can generate a 'testslists.txt' file which contains: > > /** > \test test1.cxx > \test test2.cxx > ... > */ > > The file path to those tests is specified in the EXAMPLES_PATH, I > then explicitely add this file to INPUT. But doxygen still refuses to > generate the test.html page... > I am not sure if I understand you correctly but the argument to \test is a paragraph describing a test case, not a file name: /*! * \test This is test case 1 for func(). * The description extends until the next empty line * or another Doxygen command. */ void func() { } Since \test is part of the documentation of an entity (function, class, etc) like \param, \return, etc, I assume that you do not get anything because your \test commands are not associated with any entity. Regards Martin Jerabek |