|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r70284 - in sandbox/assign_v2/libs/assign/v2/test: put put/pipe put/pipe/modifier unit_testing
From: erwann.rogard_at_[hidden]
Date: 2011-03-20 22:21:05
Author: e_r
Date: 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
New Revision: 70284
URL: http://svn.boost.org/trac/boost/changeset/70284
Log:
upd assign_v2
Text files modified:
sandbox/assign_v2/libs/assign/v2/test/put/pipe.cpp | 12 +++++-----
sandbox/assign_v2/libs/assign/v2/test/put/pipe.h | 10 ++++----
sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.cpp | 2
sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.h | 2
sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.cpp | 2
sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.h | 2
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.cpp | 4 +-
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.h | 2
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.cpp | 4 +-
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.h | 4 +-
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.cpp | 4 +-
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.h | 6 ++--
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.cpp | 4 +-
sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.h | 4 +-
sandbox/assign_v2/libs/assign/v2/test/put/put.cpp | 14 ++++++------
sandbox/assign_v2/libs/assign/v2/test/put/put.h | 10 ++++----
sandbox/assign_v2/libs/assign/v2/test/unit_testing/detail.cpp | 5 ---
sandbox/assign_v2/libs/assign/v2/test/unit_testing/ref.cpp | 3 -
sandbox/assign_v2/libs/assign/v2/test/unit_testing/utility.cpp | 1
sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp | 43 +++++++++++----------------------------
20 files changed, 58 insertions(+), 80 deletions(-)
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -7,13 +7,13 @@
// Boost Software License, Version 1.0. (See accompanying file //
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //
//////////////////////////////////////////////////////////////////////////////
-#include <libs/assign/v2/test/value/pipe/csv_put.h>
-#include <libs/assign/v2/test/value/pipe/fun.h>
-#include <libs/assign/v2/test/value/pipe/modifier.h>
-#include <libs/assign/v2/test/value/pipe.h>
+#include <libs/assign/v2/test/put/pipe/csv_put.h>
+#include <libs/assign/v2/test/put/pipe/fun.h>
+#include <libs/assign/v2/test/put/pipe/modifier.h>
+#include <libs/assign/v2/test/put/pipe.h>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
void test()
@@ -24,6 +24,6 @@
}
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// xxx_test_assign
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -7,18 +7,18 @@
// Boost Software License, Version 1.0. (See accompanying file //
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //
//////////////////////////////////////////////////////////////////////////////
-#ifndef LIBS_ASSIGN_V2_TEST_PIPE_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_PIPE_ER_2010_H
+#ifndef LIBS_ASSIGN_V2_TEST_PUT_PIPE_ER_2010_H
+#define LIBS_ASSIGN_V2_TEST_PUT_PIPE_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
void test();
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// xxx_test_assign
-#endif // LIBS_ASSIGN_V2_TEST_PIPE_ER_2010_H
+#endif // LIBS_ASSIGN_V2_TEST_PUT_PIPE_ER_2010_H
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -22,7 +22,7 @@
#include <libs/assign/v2/test/value/pipe/csv_put.h>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_csv_put{
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/csv_put.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -11,7 +11,7 @@
#define LIBS_ASSIGN_V2_TEST_PIPE_CSV_PUT_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_csv_put{
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -25,7 +25,7 @@
#include <iostream>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_fun{
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/fun.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -11,7 +11,7 @@
#define LIBS_ASSIGN_V2_TEST_PIPE_MODULO_FUN_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_fun{
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -18,7 +18,7 @@
#include <libs/assign/v2/test/value/pipe/modifier/iterate.h>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_iterate{
@@ -48,5 +48,5 @@
}// xxx_iterate
}// xxx_modifier
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// test_assign_v2
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/iterate.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -11,7 +11,7 @@
#define LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_ITERATE_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_iterate{
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -19,7 +19,7 @@
#include <libs/assign/v2/test/value/pipe/modifier/lookup.h>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_lookup{
@@ -51,5 +51,5 @@
}// xxx_lookup
}// xxx_modifier
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// test_assign_v2
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/lookup.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -11,7 +11,7 @@
#define LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_LOOKUP_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_lookup{
@@ -21,7 +21,7 @@
}// xxx_lookup
}// xxx_modifier
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// xxx_test_assign
#endif // LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_LOOKUP_ER_2010_H
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -16,7 +16,7 @@
#include <libs/assign/v2/test/value/pipe/modifier/repeat.h>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_repeat{
@@ -43,5 +43,5 @@
}// xxx_repeat
}// xxx_modifier
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// test_assign_v2
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/repeat.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -11,7 +11,7 @@
#define LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_REPEAT_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_repeat{
@@ -19,9 +19,9 @@
void test();
}// xxx_repeat
-}// xxx_pipe
}// xxx_modifier
-}// xxx_value
+}// xxx_pipe
+}// xxx_put
}// xxx_test_assign
#endif // LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_REPEAT_ER_2010_H
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -22,7 +22,7 @@
#include <libs/assign/v2/test/value/pipe/modifier/standard.h>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_standard{
@@ -76,5 +76,5 @@
}// xxx_standard
}// xxx_modifier
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// test_assign_v2
\ No newline at end of file
Modified: sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/pipe/modifier/standard.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -11,7 +11,7 @@
#define LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_STANDARD_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_pipe{
namespace xxx_modifier{
namespace xxx_standard{
@@ -21,7 +21,7 @@
}// xxx_standard
}// xxx_modifier
}// xxx_pipe
-}// xxx_value
+}// xxx_put
}// xxx_test_assign
#endif // LIBS_ASSIGN_V2_TEST_PIPE_MODIFIER_STANDARD_ER_2010_H
Modified: sandbox/assign_v2/libs/assign/v2/test/put/put.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/put.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/put.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -28,12 +28,12 @@
#include <boost/range/end.hpp>
#include <boost/numeric/conversion/bounds.hpp>
#include <boost/variant.hpp>
-#include <libs/assign/v2/test/value/put.h>
+#include <libs/assign/v2/test/put/put.h>
#include <iostream>
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_put{
// MSVC REMINDER : fully qualify boost::begin boost::end - error C2668
@@ -44,7 +44,7 @@
namespace as2 = assign::v2;
{
- //[test_value_put_bitset
+ //[test_put_put_bitset
typedef std::string str_; typedef std::bitset<3> data_; /*<<Keep in mind that although `data_( str_( "011" ) )`, for instance, is valid, `consecutive.push_back( str_( "011" ) )` isn't (GCC4.2)>>*/ std::vector<data_> consecutive;
/*<<Calls `consecutive.push_back( data_( t ) );` for [^t = ]`str_( "000" )`[^, ..., ]`str_( "111" )`>>*/as2::put( consecutive )
( str_( "000" ) )( str_( "001" ) )
@@ -60,7 +60,7 @@
// unsigned i else warning comparison between signed & unsigned
}
{
- //[test_value_put_numeric_kb
+ //[test_put_put_numeric_kb
std::vector<int> numeric( 10 ); iota( numeric, 0 ); typedef std::string str_;
typedef variant< int, str_ > data_; array<data_, 16> numeric_kb;
as2::put( numeric_kb )
@@ -76,7 +76,7 @@
BOOST_ASSIGN_V2_CHECK( get<int>( numeric_kb.back() ) == 9 );
}
{
- //[test_value_put_ragged
+ //[test_put_put_ragged
typedef double data_; typedef std::vector<data_> variable_size_;
variable_size_ a( 3 ); a[0] = 0.71; a[1] = 0.63; a[2] = 0.85;
variable_size_ b( 4 ); b[0] = 0.61; b[1] = 0.69; b[2] = 0.92; b[3] = 0.55;
@@ -103,7 +103,7 @@
BOOST_ASSIGN_V2_CHECK( fabs( ragged[2].back() + 99.99 ) < eps );
}
{
- //[test_value_put_stl
+ //[test_put_put_stl
std::queue<int> adapter; /*<<Calls `adapter.push( t )` for [^t = 72, 31, 48]>>*/as2::put( adapter )( 72 )( 31 )( 48 );
array<int, 3> array; /*<<Calls `array[i] = t` for [^( i, t ) = ( 0, 72 ), ( 1, 31 ), ( 2, 48 )]>>*/as2::put( array )( 72 )( 31 )( 48 );
std::set<int> assoc; /*<<Calls `assoc.insert( t )` for [^t = 72, 31, 48]>>*/as2::put( assoc )( 72 )( 31 )( 48 );
@@ -120,7 +120,7 @@
}
{
// http://bioinfo.mbb.yale.edu/~mbg/dom/fun3/area-codes/
- //[test_value_put_area_codes
+ //[test_put_put_area_codes
typedef const char us_state_ [3]; us_state_ ct = "CT", nj = "NJ", ny = "NY";
typedef int area_code_; typedef tuple<us_state_/*<<Notice the [*reference]>>*/&, area_code_> data_; std::deque< data_ > tri_state_area;
/*<<Calls `tri_state.push_back( data_( s, c ) )` for [^( s, c ) =( ny, 212 )...( ct, 203 )]>>*/
Modified: sandbox/assign_v2/libs/assign/v2/test/put/put.h
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/put/put.h (original)
+++ sandbox/assign_v2/libs/assign/v2/test/put/put.h 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -7,17 +7,17 @@
// Boost Software License, Version 1.0. (See accompanying file //
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //
//////////////////////////////////////////////////////////////////////////////
-#ifndef LIBS_ASSIGN_V2_TEST_PUT_ER_2010_H
-#define LIBS_ASSIGN_V2_TEST_PUT_ER_2010_H
+#ifndef LIBS_ASSIGN_V2_TEST_PUT_PUT_ER_2010_H
+#define LIBS_ASSIGN_V2_TEST_PUT_PUT_ER_2010_H
namespace test_assign_v2{
-namespace xxx_value{
+namespace xxx_put{
namespace xxx_put{
void test();
}// xxx_put
-}// xxx_value
+}// xxx_put
}// xxx_test_assign
-#endif // LIBS_ASSIGN_V2_TEST_PUT_ER_2010_H
+#endif // LIBS_ASSIGN_V2_TEST_PUT_PUT_ER_2010_H
Modified: sandbox/assign_v2/libs/assign/v2/test/unit_testing/detail.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/unit_testing/detail.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/detail.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -9,9 +9,6 @@
//////////////////////////////////////////////////////////////////////////////
#ifndef LIBS_ASSIGN_V2_TEST_UNIT_TEST_DETAIL_ER_2010_CPP
#define LIBS_ASSIGN_V2_TEST_UNIT_TEST_DETAIL_ER_2010_CPP
-
-#include <iostream> // needed?
-
#include <boost/test/test_tools.hpp>
#define BOOST_ASSIGN_V2_CHECK( p ) BOOST_CHECK( p )
#include <libs/assign/v2/test/detail/functor.cpp>
@@ -31,4 +28,4 @@
return test;
}
-#endif
+#endif // LIBS_ASSIGN_V2_TEST_UNIT_TEST_DETAIL_ER_2010_CPP
Modified: sandbox/assign_v2/libs/assign/v2/test/unit_testing/ref.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/unit_testing/ref.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/ref.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -31,7 +31,6 @@
using namespace xxx_ref;
test->add( BOOST_TEST_CASE( &xxx_aux_::xxx_convert_traits::test ) );
test->add( BOOST_TEST_CASE( &xxx_aux_::xxx_list::test ) );
- test->add( BOOST_TEST_CASE( &xxx_aux_::xxx_list_tuple::test ) );
test->add( BOOST_TEST_CASE( &xxx_array::test ) );
test->add( BOOST_TEST_CASE( &xxx_csv_array::test ) );
test->add( BOOST_TEST_CASE( &xxx_wrapper::test ) );
@@ -39,4 +38,4 @@
return test;
}
-#endif
+#endif // LIBS_ASSIGN_V2_TEST_UNIT_TEST_REF_ER_2010_CPP
Modified: sandbox/assign_v2/libs/assign/v2/test/unit_testing/utility.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/unit_testing/utility.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/utility.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -17,6 +17,7 @@
#include <libs/assign/v2/test/utility/chain.cpp>
#include <libs/assign/v2/test/utility/conversion.cpp>
#include <libs/assign/v2/test/utility/csv.cpp>
+
#include <boost/test/unit_test.hpp>
using boost::unit_test::test_suite;
test_suite* init_unit_test_suite( int argc, char* argv[] )
Modified: sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp
==============================================================================
--- sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp (original)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/value.cpp 2011-03-20 22:21:00 EDT (Sun, 20 Mar 2011)
@@ -7,29 +7,20 @@
// Boost Software License, Version 1.0. (See accompanying file //
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //
//////////////////////////////////////////////////////////////////////////////
-#ifndef LIBS_ASSIGN_V2_TEST_UNIT_TEST_VALUE_ER_2010_CPP
-#define LIBS_ASSIGN_V2_TEST_UNIT_TEST_VALUE_ER_2010_CPP
+#ifndef LIBS_ASSIGN_V2_TEST_UNIT_TEST_PUT_ER_2010_CPP
+#define LIBS_ASSIGN_V2_TEST_UNIT_TEST_PUT_ER_2010_CPP
#include <boost/test/test_tools.hpp>
#define BOOST_ASSIGN_V2_CHECK( p ) BOOST_CHECK( p )
-#include <libs/assign/v2/test/deque.cpp>
-#include <libs/assign/v2/test/fun.cpp>
-#include <libs/assign/v2/test/modifier/deduce.cpp>
-#include <libs/assign/v2/test/modifier/iterate.cpp>
-#include <libs/assign/v2/test/modifier/lookup.cpp>
-#include <libs/assign/v2/test/modifier/repeat.cpp>
-#include <libs/assign/v2/test/modifier/standard.cpp>
-#include <libs/assign/v2/test/value/pipe/args_list.cpp>
-#include <libs/assign/v2/test/value/pipe/fun.cpp>
-#include <libs/assign/v2/test/value/pipe/modifier/iterate.cpp>
-#include <libs/assign/v2/test/value/pipe/modifier/lookup.cpp>
-#include <libs/assign/v2/test/value/pipe/modifier/repeat.cpp>
-#include <libs/assign/v2/test/value/pipe/modifier/standard.cpp>
-#include <libs/assign/v2/test/value/pipe/csv_put.cpp>
-#include <libs/assign/v2/test/value/ptr.cpp>
-#include <libs/assign/v2/test/value/put.cpp>
-
+#include <libs/assign/v2/test/put/pipe/fun.cpp>
+#include <libs/assign/v2/test/put/pipe/modifier/iterate.cpp>
+#include <libs/assign/v2/test/put/pipe/modifier/lookup.cpp>
+#include <libs/assign/v2/test/put/pipe/modifier/repeat.cpp>
+#include <libs/assign/v2/test/put/pipe/modifier/standard.cpp>
+#include <libs/assign/v2/test/put/pipe/csv_put.cpp>
+#include <libs/assign/v2/test/put/ptr.cpp>
+#include <libs/assign/v2/test/put/put.cpp>
#include <boost/test/unit_test.hpp>
using boost::unit_test::test_suite;
@@ -38,22 +29,12 @@
test_suite* test = BOOST_TEST_SUITE( "BOOST_ASSIGN_V2" );
using namespace test_assign_v2;
{
-
- test->add( BOOST_TEST_CASE( &ns::xxx_deque::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_fun::test ) );
- namespace ns = xxx_value;
- test->add( BOOST_TEST_CASE( &ns::xxx_modifier::xxx_deduce::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_modifier::xxx_iterate::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_modifier::xxx_lookup::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_modifier::xxx_repeat::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_modifier::xxx_standard::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_args_list::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_fun::test ) );
+ namespace ns = xxx_put;
+ test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_csv_put::test ) );
test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_iterate::test ) );
test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_lookup::test ) );
test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_repeat::test ) );
test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_modifier::xxx_standard::test ) );
- test->add( BOOST_TEST_CASE( &ns::xxx_pipe::xxx_csv_put::test ) );
test->add( BOOST_TEST_CASE( &ns::xxx_ptr::test ) );
test->add( BOOST_TEST_CASE( &ns::xxx_put::test ) );
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk