OSDN Git Service

Removed the process list with was not an explanation.
[ccunit/ccunit.git] / doc / cookbook.dox
index 2dbcc4e..f088089 100644 (file)
@@ -479,47 +479,6 @@ When you have a common fixture, here is what you do:
 ¼¡¤Î¤è¤¦¤Ë¤¹¤ë¤³¤È¤Ç¤·¤ç¤¦¡£
 @~
 
-<ol>
-<li>@english
-    Create a @link CCUnitTestCase TestCase @endlink object
-    @japanese
-    @link CCUnitTestCase TestCase @endlink ¤òºîÀ®¤·¤Þ¤¹
-    @endif
-</li>
-<li>@english
-    Add an global variable for each part of the case
-    @japanese
-    TestCase ¤Î¥¹¥³¡¼¥×Æâ¤Ë¥°¥í¡¼¥Ð¥ëÊÑ¿ô¤òÄêµÁ¤·¤Þ¤¹
-    @endif
-</li>
-<li>@english
-    Write @c setUp() function to initialize the valiables
-    @japanese
-    ¥Õ¥£¥¯¥¹¥Á¥ã¤ò½é´ü²½¤¹¤ë @c setUp() ´Ø¿ô¤ò½ñ¤­¤Þ¤¹
-    @endif
-</li>
-<li>@english
-    Write @c tearDown() to release any permanent
-    resources you allocated in @c setUp
-    @japanese
-    @c setUp() ¤Ç³ä¤êÅö¤Æ¤¿±Ê³Ū¥ê¥½¡¼¥¹¤ò²òÊü¤¹¤ë¤¿¤á¤Î
-    @c tearDown() ´Ø¿ô¤ò½ñ¤­¤Þ¤¹
-    @endif
-</li>
-<li>@english Write TestFunc.
-    @japanese
-    ¥Æ¥¹¥È´Ø¿ô (TestFunc) ¤ò½ñ¤­¤Þ¤¹¡£
-    @endif
-</li>
-<li>@english
-    Add @link CCUnitTestFunc TestFunc @endlink objects to case object
-    @japanese
-    @link CCUnitTestFunc TestFunc @endlink ¤ò
-    @link CCUnitTestCase TestCase @endlink ¤ËÅÐÏ¿¤·¤Þ¤¹¡£
-    @endif
-</li>
-</ol>
-
 @english
 For example, to write several test cases, first create a
 fixture: