diff --git a/string/test/Jamfile.v2 b/string/test/Jamfile.v2 index 364a4db..9d8503c 100644 --- a/string/test/Jamfile.v2 +++ b/string/test/Jamfile.v2 @@ -7,6 +7,8 @@ # # See http://www.boost.org for updates, documentation, and revision history. +import testing ; + test-suite string_algo : [ run container_test.cpp diff --git a/string/test/container_test.cpp b/string/test/container_test.cpp index 97561e8..1257e35 100644 --- a/string/test/container_test.cpp +++ b/string/test/container_test.cpp @@ -7,6 +7,10 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include +// equals predicate is used for result comparison +#include + // Include unit test framework #include @@ -14,12 +18,8 @@ #include #include -#include #include -// equals predicate is used for result comparison -#include - // test tools #include diff --git a/string/test/conv_test.cpp b/string/test/conv_test.cpp index 852e8c0..82f8d8f 100644 --- a/string/test/conv_test.cpp +++ b/string/test/conv_test.cpp @@ -7,13 +7,14 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include + // Include unit test framework #include #include #include #include -#include #include using namespace std; diff --git a/string/test/find_test.cpp b/string/test/find_test.cpp index c1b8baa..417e286 100644 --- a/string/test/find_test.cpp +++ b/string/test/find_test.cpp @@ -7,6 +7,9 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include +#include + // Include unit test framework #include @@ -15,8 +18,6 @@ #include #include #include -#include -#include #include using namespace std; diff --git a/string/test/predicate_test.cpp b/string/test/predicate_test.cpp index 644a53f..d2d0f0e 100644 --- a/string/test/predicate_test.cpp +++ b/string/test/predicate_test.cpp @@ -7,6 +7,9 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include +#include + // Include unit test framework #include @@ -14,8 +17,6 @@ #include #include #include -#include -#include #include using namespace std; diff --git a/string/test/regex_test.cpp b/string/test/regex_test.cpp index c0a0a45..7b9cd00 100644 --- a/string/test/regex_test.cpp +++ b/string/test/regex_test.cpp @@ -7,6 +7,9 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include +#include + // Include unit test framework #include @@ -14,8 +17,6 @@ #include #include #include -#include -#include #include using namespace std; diff --git a/string/test/replace_test.cpp b/string/test/replace_test.cpp index 998fe66..fa61e1a 100644 --- a/string/test/replace_test.cpp +++ b/string/test/replace_test.cpp @@ -7,6 +7,11 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include +#include +#include +#include + // Include unit test framework #include @@ -15,11 +20,6 @@ #include #include -#include -#include -#include -#include - // equals predicate is used for result comparison #include diff --git a/string/test/split_test.cpp b/string/test/split_test.cpp index 5843534..805ce68 100644 --- a/string/test/split_test.cpp +++ b/string/test/split_test.cpp @@ -7,6 +7,11 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include +#include +// equals predicate is used for result comparison +#include + // Include unit test framework #include @@ -15,11 +20,6 @@ #include #include -#include -#include - -// equals predicate is used for result comparison -#include using namespace std; diff --git a/string/test/trim_test.cpp b/string/test/trim_test.cpp index 531d48d..ed80c28 100644 --- a/string/test/trim_test.cpp +++ b/string/test/trim_test.cpp @@ -7,12 +7,13 @@ // See http://www.boost.org for updates, documentation, and revision history. +#include + // Include unit test framework #include #include #include -#include #include using namespace std;