A C Unit Test Library for C language.
Revisão | 8048cfb878bbfaf4c4527fab543eee5a9220072a (tree) |
---|---|
Hora | 2013-07-14 17:43:04 |
Autor | tsntsumi <tsntsumi@user...> |
Commiter | tsntsumi |
Renamed case_setUp/case_tearDown to setUpBeforeClass/tearDownAfterClass in mainpage.dox.
@@ -127,6 +127,7 @@ This library is released under the GNU | ||
127 | 127 | @section _links 関連リンク |
128 | 128 | @endif |
129 | 129 | |
130 | +- <a href="http://sourceforge.jp/projects/ccunit/">CCUnit Project page</a>. | |
130 | 131 | - C Test Units |
131 | 132 | - <a href="http://cunit.sourceforge.net/">CUnit</a>: |
132 | 133 | @~english CUnit is Unit Testing Framework for 'C' language. |
@@ -202,26 +203,26 @@ digraph StructureCollaboration { | ||
202 | 203 | label="Test Functions"; labelloc=t; labeljust=l; |
203 | 204 | style=dashed; |
204 | 205 | rank=same; |
205 | - case_setUp; | |
206 | + setUpBeforeClass; | |
206 | 207 | setUp; |
207 | 208 | TestFunc; |
208 | 209 | tearDown; |
209 | - case_tearDown; | |
210 | + tearDownAfterClass; | |
210 | 211 | } |
211 | 212 | TestSuite [ URL="@ref CCUnitTestSuite" ]; |
212 | 213 | TestCase [ URL="@ref CCUnitTestCase" ]; |
213 | 214 | TestFunc [ URL="@ref CCUnitTestFunc" ]; |
214 | - case_setUp [ URL="@ref CCUnitTestFunc" ]; | |
215 | + setUpBeforeClass [ URL="@ref CCUnitTestFunc" ]; | |
215 | 216 | setUp [ URL="@ref CCUnitTestFunc" ]; |
216 | 217 | tearDown [ URL="@ref CCUnitTestFunc" ]; |
217 | - case_tearDown [ URL="@ref CCUnitTestFunc" ]; | |
218 | + tearDownAfterClass [ URL="@ref CCUnitTestFunc" ]; | |
218 | 219 | TestSuite -> TestSuite [ label="1..n" ]; |
219 | 220 | TestSuite -> TestCase [ headlabel="1..n", labeldistance=1, labelangle=-45 ]; |
220 | - TestCase -> case_setUp [ headlabel="0..1", labelangle=45 ]; | |
221 | + TestCase -> setUpBeforeClass [ headlabel="0..1", labelangle=45 ]; | |
221 | 222 | TestCase -> setUp [ headlabel="0..1", labelangle=45 ]; |
222 | 223 | TestCase -> TestFunc [ headlabel="1..n", labelangle=-45 ]; |
223 | 224 | TestCase -> tearDown [ headlabel="0..1", labelangle=-45 ]; |
224 | - TestCase -> case_tearDown [ headlabel="0..1", labelangle=-45 ]; | |
225 | + TestCase -> tearDownAfterClass [ headlabel="0..1", labelangle=-45 ]; | |
225 | 226 | } |
226 | 227 | * @enddot |
227 | 228 | * |