OSDN Git Service

fixed function name
authortsntsumi <tsntsumi@users.sourecforge.jp>
Thu, 11 Jul 2013 23:37:05 +0000 (08:37 +0900)
committertsntsumi <tsntsumi@users.sourecforge.jp>
Thu, 11 Jul 2013 23:37:05 +0000 (08:37 +0900)
doc/cookbook.dox

index 64e14e4..ca85357 100644 (file)
@@ -609,7 +609,8 @@ and we may run the multiple test.
 Then, only when all the tests are finished,
 it may seem to carry out the code for the settlement.
 
-You register the @c setUp and @c tearDown function in the test case for that.
+You register the @c setUpBeforeClass and @c tearDownAfterClass
+function in the test case for that.
 Then, the test functions are run in the following order:
 @japanese
 前の節ではテストごとに毎回初期化を行っていました。
@@ -904,8 +905,8 @@ comment of the javaDoc style before each test function.
 If the comment isn't being written, the name of the test
 function is registered as an explanation of the function.
 
-There are @c setUp, @c tearDown, @c setUpBeforeClass and @c tearDownAfterClass as
-a special test function.
+There are @c setUp, @c tearDown, @c setUpBeforeClass and
+@c tearDownAfterClass as a special test function.
 Their works as a functional function of the test case that
 Those function as a functional function of the test case which 
 I explained before so that you may know it from that name.