From: tsntsumi Date: Tue, 9 Sep 2003 12:30:33 +0000 (+0000) Subject: add doxycomment X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8f0c6a75713cec7e538b3cee5daaf691f22e2bc4;p=ccunit%2Fccunit.git add doxycomment --- diff --git a/src/ccunit/CCUnitMakeSuite.h b/src/ccunit/CCUnitMakeSuite.h index 38288ac..dd29737 100644 --- a/src/ccunit/CCUnitMakeSuite.h +++ b/src/ccunit/CCUnitMakeSuite.h @@ -1,4 +1,4 @@ -/* +/* -*- C -*- * $Id$ */ /* Copyright (C) 2003 TSUTSUMI Kikuo. @@ -29,43 +29,43 @@ #include /** - * Test Def. + * Test definition information. */ typedef struct CCUnitTestDef { - CCUnitTestType_t type; - char* name; + CCUnitTestType_t type; /**< test type */ + char* name; /**< test name */ } CCUnitTestDef; /** - * Test Suite Def. + * Test suite definition information. */ typedef struct CCUnitTestSuiteDef { - CCUnitTestDef super; - CCUnitList testdefs; + CCUnitTestDef super; /**< super class */ + CCUnitList testdefs; /**< test defs list */ } CCUnitTestSuiteDef; /** - * Test Function Def + * Test function definition information. */ typedef struct CCUnitTestFuncDef { - char* type; - char* name; - char* desc; + char* type; /**< return type */ + char* name; /**< function name */ + char* desc; /**< description */ } CCUnitTestFuncDef; /** - * Test Case Def. + * Test case definition information. */ typedef struct CCUnitTestCaseDef { - CCUnitTestDef super; - CCUnitList testFuncs; - CCUnitTestFuncDef* setUp; - CCUnitTestFuncDef* tearDown; - char* desc; + CCUnitTestDef super; /**< super class */ + CCUnitTestFuncDef* runTest; /**< test run function */ + CCUnitTestFuncDef* setUp; /**< test setup function */ + CCUnitTestFuncDef* tearDown; /**< test tearDown function */ + char* desc; /**< test case description */ } CCUnitTestCaseDef; /**