Fix doxygen for tests
This commit is contained in:
parent
e1d18aad12
commit
5539384c37
2
Doxyfile
2
Doxyfile
@ -668,7 +668,7 @@ WARN_LOGFILE =
|
||||
# directories like "/usr/src/myproject". Separate the files or directories
|
||||
# with spaces.
|
||||
|
||||
INPUT = src/
|
||||
INPUT = src/ src/test/
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
||||
|
@ -16,6 +16,12 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file cunit.c
|
||||
* Main cunit file, registering the test suites.
|
||||
* @brief test suite registration
|
||||
*/
|
||||
|
||||
#include "cunit.h"
|
||||
|
||||
#include <CUnit/Basic.h>
|
||||
|
@ -16,6 +16,13 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file cunit.h
|
||||
* Main cunit header, containing declarations
|
||||
* of all test functions.
|
||||
* @brief test function declarations
|
||||
*/
|
||||
|
||||
/*
|
||||
* filereader tests
|
||||
*/
|
||||
|
@ -16,6 +16,13 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file cunit_filereader.c
|
||||
* Test functions for the filereader,
|
||||
* including various file formats.
|
||||
* @brief file reader test functions
|
||||
*/
|
||||
|
||||
#include "filereader.h"
|
||||
#include "half_edge.h"
|
||||
|
||||
|
@ -16,6 +16,13 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file cunit_half_edge.c
|
||||
* Test functions for the half edge data structure
|
||||
* and operations based on it.
|
||||
* @brief half-edge test functions
|
||||
*/
|
||||
|
||||
#include "half_edge.h"
|
||||
|
||||
#include <CUnit/Basic.h>
|
||||
|
@ -16,6 +16,13 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file cunit_vector.c
|
||||
* Test functions for the vector data structure
|
||||
* and operations based on it.
|
||||
* @brief vector test functions
|
||||
*/
|
||||
|
||||
#include "vector.h"
|
||||
|
||||
#include <CUnit/Basic.h>
|
||||
|
Loading…
Reference in New Issue
Block a user