@@ -844,7 +844,7 @@
diff --git a/doc/html/utf/user-guide/runtime-config/run-by-name.html b/doc/html/utf/user-guide/runtime-config/run-by-name.html
index df860930..850e94be 100755
--- a/doc/html/utf/user-guide/runtime-config/run-by-name.html
+++ b/doc/html/utf/user-guide/runtime-config/run-by-name.html
@@ -247,7 +247,7 @@ Leaving test suite "example"
diff --git a/doc/html/utf/user-guide/test-organization.html b/doc/html/utf/user-guide/test-organization.html
index e850e632..f09f4808 100755
--- a/doc/html/utf/user-guide/test-organization.html
+++ b/doc/html/utf/user-guide/test-organization.html
@@ -54,7 +54,7 @@
- The above points should make it clear that it's preferable to split test module
+ The above points should make it clear that it's preferable to split test module
into smaller units. These units are test cases. A test case has to be constructed based on some kind of
function and registered in a test tree, so that the test runner knows how to invoke it. There are different
possible designs for the test case construction problem: inheritance from the predefined base class, specifically
@@ -102,7 +102,7 @@
diff --git a/doc/html/utf/user-guide/test-organization/auto-nullary-test-case.html b/doc/html/utf/user-guide/test-organization/auto-nullary-test-case.html
index f3f12924..e51beb82 100755
--- a/doc/html/utf/user-guide/test-organization/auto-nullary-test-case.html
+++ b/doc/html/utf/user-guide/test-organization/auto-nullary-test-case.html
@@ -61,7 +61,7 @@ BOOST_AUTO_TEST_CASE( free_test_function )
> example --log_level=test_suite
Running 1 test case...
@@ -81,7 +81,7 @@ Leaving test suite "example"
diff --git a/doc/html/utf/user-guide/test-organization/auto-test-case-template.html b/doc/html/utf/user-guide/test-organization/auto-test-case-template.html
index becbdcbb..cf0bc39a 100755
--- a/doc/html/utf/user-guide/test-organization/auto-test-case-template.html
+++ b/doc/html/utf/user-guide/test-organization/auto-test-case-template.html
@@ -75,7 +75,7 @@ BOOST_AUTO_TEST_CASE_TEMPLATE( my_test, T, test_types )
> example
Running 3 test cases...
@@ -89,7 +89,7 @@ test.cpp(12): error in "my_test<unsigned char>": check sizeof(T) == 4 fail
diff --git a/doc/html/utf/user-guide/test-organization/auto-test-suite.html b/doc/html/utf/user-guide/test-organization/auto-test-suite.html
index 86c92bd1..7d996242 100755
--- a/doc/html/utf/user-guide/test-organization/auto-test-suite.html
+++ b/doc/html/utf/user-guide/test-organization/auto-test-suite.html
@@ -93,7 +93,7 @@ BOOST_AUTO_TEST_SUITE_END()
> example
Running 4 test cases...
@@ -142,7 +142,7 @@ BOOST_AUTO_TEST_SUITE_END()
>example --report_level=detailed
Running 3 test cases...
@@ -173,7 +173,7 @@ Test suite "example" failed with:
diff --git a/doc/html/utf/user-guide/test-organization/expected-failures.html b/doc/html/utf/user-guide/test-organization/expected-failures.html
index 00f76233..bddaee9a 100755
--- a/doc/html/utf/user-guide/test-organization/expected-failures.html
+++ b/doc/html/utf/user-guide/test-organization/expected-failures.html
@@ -100,7 +100,7 @@ init_unit_test_suite( int, char* [] ) {
> example --log_level=message
Running 1 test case...
@@ -160,7 +160,7 @@ BOOST_AUTO_TEST_SUITE_END()
> example --report_level=short
Running 2 test cases...
@@ -180,7 +180,7 @@ Test suite "example" passed with:
diff --git a/doc/html/utf/user-guide/test-organization/manual-nullary-test-case.html b/doc/html/utf/user-guide/test-organization/manual-nullary-test-case.html
index 373ce57e..9d4d529a 100755
--- a/doc/html/utf/user-guide/test-organization/manual-nullary-test-case.html
+++ b/doc/html/utf/user-guide/test-organization/manual-nullary-test-case.html
@@ -77,7 +77,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example
Running 1 test case...
@@ -135,7 +135,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example
Running 1 test case...
@@ -185,7 +185,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example
Running 2 test cases...
@@ -238,7 +238,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example
Running 1 test case...
@@ -307,7 +307,7 @@ main( int argc, char* argv[] )
> example
Running 3 test cases...
@@ -323,7 +323,7 @@ Running 3 test cases...
diff --git a/doc/html/utf/user-guide/test-organization/manual-test-case-template.html b/doc/html/utf/user-guide/test-organization/manual-test-case-template.html
index bc5c880c..58812312 100755
--- a/doc/html/utf/user-guide/test-organization/manual-test-case-template.html
+++ b/doc/html/utf/user-guide/test-organization/manual-test-case-template.html
@@ -150,7 +150,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example
Running 3 test cases...
@@ -164,7 +164,7 @@ test.cpp(10): error in "my_test<unsigned char>": check sizeof(T) == 4 fail
diff --git a/doc/html/utf/user-guide/test-organization/manual-test-suite.html b/doc/html/utf/user-guide/test-organization/manual-test-suite.html
index 30174e30..0dca2495 100755
--- a/doc/html/utf/user-guide/test-organization/manual-test-suite.html
+++ b/doc/html/utf/user-guide/test-organization/manual-test-suite.html
@@ -64,7 +64,7 @@
The third optional parameter - timeout - defines the timeout value for the test unit. As of now the UTF
isn't able to set a timeout for the test suite execution, so this parameter makes sense only for test case
registration. By default no timeout is set. See the method
- boost::execution_monitor::execute for more details about the timeout value.
+ boost::execution_monitor::execute for more details about the timeout value.
To register group of test units in one function call the boost::unit_test::test_suite provides another add
@@ -136,7 +136,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example --log_level=test_suite
Running 4 test cases...
@@ -166,7 +166,7 @@ Leaving test suite "Master Test Suite"
diff --git a/doc/html/utf/user-guide/test-organization/master-test-suite.html b/doc/html/utf/user-guide/test-organization/master-test-suite.html
index c828f3f8..136638f4 100755
--- a/doc/html/utf/user-guide/test-organization/master-test-suite.html
+++ b/doc/html/utf/user-guide/test-organization/master-test-suite.html
@@ -121,7 +121,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example 1
Test setup error: test tree is empty
@@ -163,7 +163,7 @@ BOOST_AUTO_TEST_CASE( free_test_function )
> example --log_level=test_suite
Running 1 test case...
@@ -209,7 +209,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example --log_level=test_suite
Running 1 test case...
@@ -228,7 +228,7 @@ Leaving test suite "my master test suite name"
diff --git a/doc/html/utf/user-guide/test-organization/nullary-test-case.html b/doc/html/utf/user-guide/test-organization/nullary-test-case.html
index fe52452c..4e3dda32 100755
--- a/doc/html/utf/user-guide/test-organization/nullary-test-case.html
+++ b/doc/html/utf/user-guide/test-organization/nullary-test-case.html
@@ -48,7 +48,7 @@
diff --git a/doc/html/utf/user-guide/test-organization/test-case-template.html b/doc/html/utf/user-guide/test-organization/test-case-template.html
index 06f4c34b..56633b5d 100755
--- a/doc/html/utf/user-guide/test-organization/test-case-template.html
+++ b/doc/html/utf/user-guide/test-organization/test-case-template.html
@@ -50,7 +50,7 @@
diff --git a/doc/html/utf/user-guide/test-organization/test-suite.html b/doc/html/utf/user-guide/test-organization/test-suite.html
index 7d6a30fa..16e5304b 100755
--- a/doc/html/utf/user-guide/test-organization/test-suite.html
+++ b/doc/html/utf/user-guide/test-organization/test-suite.html
@@ -55,7 +55,7 @@
diff --git a/doc/html/utf/user-guide/test-organization/unary-test-case.html b/doc/html/utf/user-guide/test-organization/unary-test-case.html
index 76926c77..f712fe78 100755
--- a/doc/html/utf/user-guide/test-organization/unary-test-case.html
+++ b/doc/html/utf/user-guide/test-organization/unary-test-case.html
@@ -115,7 +115,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example
Running 5 test cases...
@@ -172,7 +172,7 @@ bool init_unit_test()
> example
Running 5 test cases...
@@ -187,7 +187,7 @@ test.cpp(14): error in "tm": difference between d * 100{100.01} and (double)(int
diff --git a/doc/html/utf/user-guide/test-output.html b/doc/html/utf/user-guide/test-output.html
index c904845f..74a7319f 100755
--- a/doc/html/utf/user-guide/test-output.html
+++ b/doc/html/utf/user-guide/test-output.html
@@ -80,7 +80,7 @@
diff --git a/doc/html/utf/user-guide/test-output/BOOST_TEST_CHECKPOINT.html b/doc/html/utf/user-guide/test-output/BOOST_TEST_CHECKPOINT.html
index d0f1da89..b72f7341 100755
--- a/doc/html/utf/user-guide/test-output/BOOST_TEST_CHECKPOINT.html
+++ b/doc/html/utf/user-guide/test-output/BOOST_TEST_CHECKPOINT.html
@@ -73,7 +73,7 @@ void foo( int i )
> example
Running 1 test case...
@@ -88,7 +88,7 @@ test.cpp(13): last checkpoint: Calling foo with i=1
diff --git a/doc/html/utf/user-guide/test-output/BOOST_TEST_MESSAGE.html b/doc/html/utf/user-guide/test-output/BOOST_TEST_MESSAGE.html
index 0ce94dd0..f5d4b55c 100755
--- a/doc/html/utf/user-guide/test-output/BOOST_TEST_MESSAGE.html
+++ b/doc/html/utf/user-guide/test-output/BOOST_TEST_MESSAGE.html
@@ -85,7 +85,7 @@ BOOST_AUTO_TEST_CASE( test_update )
> example --log_level=message
Running 2 test cases...
@@ -102,7 +102,7 @@ Update Volume with 100
diff --git a/doc/html/utf/user-guide/test-output/BOOST_TEST_PASSPOINT.html b/doc/html/utf/user-guide/test-output/BOOST_TEST_PASSPOINT.html
index 9993cb84..0147c51b 100755
--- a/doc/html/utf/user-guide/test-output/BOOST_TEST_PASSPOINT.html
+++ b/doc/html/utf/user-guide/test-output/BOOST_TEST_PASSPOINT.html
@@ -68,7 +68,7 @@ BOOST_AUTO_TEST_CASE( test_case )
> example
Running 1 test case...
@@ -83,7 +83,7 @@ test.cpp(16): last checkpoint
diff --git a/doc/html/utf/user-guide/test-output/FPT.html b/doc/html/utf/user-guide/test-output/FPT.html
index 6e44cca3..8ca6560c 100644
--- a/doc/html/utf/user-guide/test-output/FPT.html
+++ b/doc/html/utf/user-guide/test-output/FPT.html
@@ -69,7 +69,7 @@
diff --git a/doc/html/utf/user-guide/test-output/log-ct-config.html b/doc/html/utf/user-guide/test-output/log-ct-config.html
index 95f26b4a..4cb72f74 100755
--- a/doc/html/utf/user-guide/test-output/log-ct-config.html
+++ b/doc/html/utf/user-guide/test-output/log-ct-config.html
@@ -80,7 +80,7 @@ BOOST_AUTO_TEST_CASE( test_case )
> example
@@ -128,7 +128,7 @@ BOOST_AUTO_TEST_CASE( test_case0 )
> example
Running 1 test case...
@@ -180,7 +180,7 @@ BOOST_AUTO_TEST_CASE( test_case0 )
> example --report_level=no
<TestLog><Error file="test.cpp" line="18">check false failed</Error></TestLog>
@@ -194,7 +194,7 @@ BOOST_AUTO_TEST_CASE( test_case0 )
diff --git a/doc/html/utf/user-guide/test-output/log-hr-format.html b/doc/html/utf/user-guide/test-output/log-hr-format.html
index aa0fd07f..7ea4d915 100755
--- a/doc/html/utf/user-guide/test-output/log-hr-format.html
+++ b/doc/html/utf/user-guide/test-output/log-hr-format.html
@@ -322,7 +322,7 @@ Boost : $BOOST_VERSION
diff --git a/doc/html/utf/user-guide/test-output/log-xml-format.html b/doc/html/utf/user-guide/test-output/log-xml-format.html
index b21eeade..5dc65aad 100755
--- a/doc/html/utf/user-guide/test-output/log-xml-format.html
+++ b/doc/html/utf/user-guide/test-output/log-xml-format.html
@@ -38,7 +38,7 @@
diff --git a/doc/html/utf/user-guide/test-output/results-report.html b/doc/html/utf/user-guide/test-output/results-report.html
index fd039cfa..012b2de6 100755
--- a/doc/html/utf/user-guide/test-output/results-report.html
+++ b/doc/html/utf/user-guide/test-output/results-report.html
@@ -46,7 +46,7 @@
diff --git a/doc/html/utf/user-guide/test-output/test-log.html b/doc/html/utf/user-guide/test-output/test-log.html
index 78ff92ba..52be0604 100755
--- a/doc/html/utf/user-guide/test-output/test-log.html
+++ b/doc/html/utf/user-guide/test-output/test-log.html
@@ -181,7 +181,7 @@ BOOST_AUTO_TEST_CASE( test_list )
Running 1 test case...
test.cpp(16): error in "test_list": check p1 == p2 failed [ != ]
@@ -205,7 +205,7 @@ test.cpp(16): error in "test_list": check p1 == p2 failed [ != ]
diff --git a/doc/html/utf/user-guide/test-output/test-progress.html b/doc/html/utf/user-guide/test-output/test-progress.html
index e4d174df..5593b04d 100755
--- a/doc/html/utf/user-guide/test-output/test-progress.html
+++ b/doc/html/utf/user-guide/test-output/test-progress.html
@@ -32,7 +32,7 @@
In case if the test module involves lengthy computation split among multiple test cases you may be interested in
progress monitor. The test runners supplied with the UTF support simple text progress display, implemented based
- on boost::progress_display[]. The progress display output
+ on boost::progress_display[]. The progress display output
is enabled using the UTF parameter show_progress.
@@ -77,7 +77,7 @@ init_unit_test_suite( int argc, char* argv[] )
> example --show_progress=yes --log_level=nothing
@@ -91,12 +91,12 @@ init_unit_test_suite( int argc, char* argv[] )
diff --git a/doc/html/utf/user-guide/test-runners.html b/doc/html/utf/user-guide/test-runners.html
index 003dbad6..02ed8147 100755
--- a/doc/html/utf/user-guide/test-runners.html
+++ b/doc/html/utf/user-guide/test-runners.html
@@ -36,7 +36,7 @@
int unit_test_main( init_unit_test_func init_func, int argc, char* argv[] );
- To invoke the test runner you are required to supply the pointer to the test module
+ To invoke the test runner you are required to supply the pointer to the test module
initialization function as the first argument to the test runner function. In majority of the cases this function is
invoked directly from test executable entry point - function main(). In most usage variants the UTF can
automatically generate default function main() implementation as either part of the library or test module itself.
@@ -160,7 +160,7 @@
diff --git a/doc/html/utf/user-guide/testing-tools.html b/doc/html/utf/user-guide/testing-tools.html
index 53848cf9..b40322d3 100644
--- a/doc/html/utf/user-guide/testing-tools.html
+++ b/doc/html/utf/user-guide/testing-tools.html
@@ -50,8 +50,8 @@
All the tools are supplied in three flavors(levels): WARN, CHECK and
REQUIRE. For example: BOOST_WARN_EQUAL,
BOOST_CHECK_EQUAL, BOOST_REQUIRE_EQUAL. If an assertion designated by
- the tool passes, confirmation message can be printed in log output []. If an assertion designated by the tool failed, depending on the level following
- will happened []:
+ the tool passes, confirmation message can be printed in log output []. If an assertion designated by the tool failed, depending on the level following
+ will happened []:
Table 2. Testing tools levels differences
@@ -107,16 +107,16 @@
|