Fix doxygen for tests

This commit is contained in:
hasufell 2014-05-11 13:31:50 +02:00
parent e1d18aad12
commit 5539384c37
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
6 changed files with 35 additions and 1 deletions

View File

@ -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

View File

@ -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>

View File

@ -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
*/

View File

@ -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"

View File

@ -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>

View File

@ -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>