diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-27 17:45:18 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-27 17:45:18 +0200 |
commit | 962d8eed5bdbe62b9926f01cb85bdce9d435d3d6 (patch) | |
tree | 89a92735672c0419a164c540cee5d734f826ebe6 /src/test | |
parent | c6fd0df4efcd9f75c43ff527fd57fe43bc47a474 (diff) |
Remove boost dependency (boost/assign/std/vector.hpp)
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/streams_tests.cpp | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/src/test/streams_tests.cpp b/src/test/streams_tests.cpp index 0e8fba9386..e1e77f7c92 100644 --- a/src/test/streams_tests.cpp +++ b/src/test/streams_tests.cpp @@ -6,11 +6,8 @@ #include <support/allocators/zeroafterfree.h> #include <test/test_bitcoin.h> -#include <boost/assign/std/vector.hpp> // for 'operator+=()' #include <boost/test/unit_test.hpp> -using namespace boost::assign; // bring 'operator+=()' into scope - BOOST_FIXTURE_TEST_SUITE(streams_tests, BasicTestingSetup) BOOST_AUTO_TEST_CASE(streams_vector_writer) @@ -80,17 +77,17 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor) // Degenerate case - key += '\x00'; - key += '\x00'; + key.push_back('\x00'); + key.push_back('\x00'); ds.Xor(key); BOOST_CHECK_EQUAL( std::string(expected_xor.begin(), expected_xor.end()), std::string(ds.begin(), ds.end())); - in += '\x0f'; - in += '\xf0'; - expected_xor += '\xf0'; - expected_xor += '\x0f'; + in.push_back('\x0f'); + in.push_back('\xf0'); + expected_xor.push_back('\xf0'); + expected_xor.push_back('\x0f'); // Single character key @@ -98,7 +95,7 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor) ds.insert(ds.begin(), in.begin(), in.end()); key.clear(); - key += '\xff'; + key.push_back('\xff'); ds.Xor(key); BOOST_CHECK_EQUAL( std::string(expected_xor.begin(), expected_xor.end()), @@ -108,17 +105,17 @@ BOOST_AUTO_TEST_CASE(streams_serializedata_xor) in.clear(); expected_xor.clear(); - in += '\xf0'; - in += '\x0f'; - expected_xor += '\x0f'; - expected_xor += '\x00'; + in.push_back('\xf0'); + in.push_back('\x0f'); + expected_xor.push_back('\x0f'); + expected_xor.push_back('\x00'); ds.clear(); ds.insert(ds.begin(), in.begin(), in.end()); key.clear(); - key += '\xff'; - key += '\x0f'; + key.push_back('\xff'); + key.push_back('\x0f'); ds.Xor(key); BOOST_CHECK_EQUAL( |