• R/O
  • HTTP
  • SSH
  • HTTPS

ccunit: Commit

A C Unit Test Library for C language.


Commit MetaInfo

Revision8048cfb878bbfaf4c4527fab543eee5a9220072a (tree)
Time2013-07-14 17:43:04
Authortsntsumi <tsntsumi@user...>
Commitertsntsumi

Log Message

Renamed case_setUp/case_tearDown to setUpBeforeClass/tearDownAfterClass in mainpage.dox.

Change Summary

Incremental Difference

--- a/doc/mainpage.dox
+++ b/doc/mainpage.dox
@@ -127,6 +127,7 @@ This library is released under the GNU
127127 @section _links 関連リンク
128128 @endif
129129
130+- <a href="http://sourceforge.jp/projects/ccunit/">CCUnit Project page</a>.
130131 - C Test Units
131132 - <a href="http://cunit.sourceforge.net/">CUnit</a>:
132133 @~english CUnit is Unit Testing Framework for 'C' language.
@@ -202,26 +203,26 @@ digraph StructureCollaboration {
202203 label="Test Functions"; labelloc=t; labeljust=l;
203204 style=dashed;
204205 rank=same;
205- case_setUp;
206+ setUpBeforeClass;
206207 setUp;
207208 TestFunc;
208209 tearDown;
209- case_tearDown;
210+ tearDownAfterClass;
210211 }
211212 TestSuite [ URL="@ref CCUnitTestSuite" ];
212213 TestCase [ URL="@ref CCUnitTestCase" ];
213214 TestFunc [ URL="@ref CCUnitTestFunc" ];
214- case_setUp [ URL="@ref CCUnitTestFunc" ];
215+ setUpBeforeClass [ URL="@ref CCUnitTestFunc" ];
215216 setUp [ URL="@ref CCUnitTestFunc" ];
216217 tearDown [ URL="@ref CCUnitTestFunc" ];
217- case_tearDown [ URL="@ref CCUnitTestFunc" ];
218+ tearDownAfterClass [ URL="@ref CCUnitTestFunc" ];
218219 TestSuite -> TestSuite [ label="1..n" ];
219220 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 ];
221222 TestCase -> setUp [ headlabel="0..1", labelangle=45 ];
222223 TestCase -> TestFunc [ headlabel="1..n", labelangle=-45 ];
223224 TestCase -> tearDown [ headlabel="0..1", labelangle=-45 ];
224- TestCase -> case_tearDown [ headlabel="0..1", labelangle=-45 ];
225+ TestCase -> tearDownAfterClass [ headlabel="0..1", labelangle=-45 ];
225226 }
226227 * @enddot
227228 *
Show on old repository browser