mirror of
https://github.com/boostorg/local_function.git
synced 2026-01-24 06:02:07 +00:00
Reworked all LocalFunction tests and examples to use Boost.Detail/LightweightTest (instead of Boost.Test) and test sequence syntax without variadic macros (..._nova tests).
[SVN r77747]
This commit is contained in:
@@ -6,18 +6,17 @@
|
||||
// Home at http://www.boost.org/libs/local_function
|
||||
|
||||
#include <boost/local_function.hpp>
|
||||
#define BOOST_TEST_MODULE TestTranformSeq
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/detail/lightweight_test.hpp>
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
BOOST_AUTO_TEST_CASE(test_transform_seq) {
|
||||
int main(void) {
|
||||
int offset = 5;
|
||||
std::vector<int> v;
|
||||
std::vector<int> w;
|
||||
|
||||
for(int i = 1; i <= 2; ++i) v.push_back(i * 10);
|
||||
BOOST_CHECK(v[0] == 10); BOOST_CHECK(v[1] == 20);
|
||||
BOOST_TEST(v[0] == 10); BOOST_TEST(v[1] == 20);
|
||||
w.resize(v.size());
|
||||
|
||||
int BOOST_LOCAL_FUNCTION( (const bind& offset) (int i) ) {
|
||||
@@ -25,7 +24,7 @@ BOOST_AUTO_TEST_CASE(test_transform_seq) {
|
||||
} BOOST_LOCAL_FUNCTION_NAME(inc)
|
||||
|
||||
std::transform(v.begin(), v.end(), w.begin(), inc);
|
||||
BOOST_CHECK(w[0] == 16); BOOST_CHECK(w[1] == 26);
|
||||
BOOST_TEST(w[0] == 16); BOOST_TEST(w[1] == 26);
|
||||
|
||||
int BOOST_LOCAL_FUNCTION( (bind& inc) (int i) (int j) ) {
|
||||
return inc(i + j);
|
||||
@@ -33,6 +32,8 @@ BOOST_AUTO_TEST_CASE(test_transform_seq) {
|
||||
|
||||
offset = 0;
|
||||
std::transform(v.begin(), v.end(), w.begin(), v.begin(), inc_sum);
|
||||
BOOST_CHECK(v[0] == 27); BOOST_CHECK(v[1] == 47);
|
||||
BOOST_TEST(v[0] == 27); BOOST_TEST(v[1] == 47);
|
||||
|
||||
return boost::report_errors();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user