Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r70519 - sandbox/assign_v2/libs/assign/v2/test/unit_testing
From: erwann.rogard_at_[hidden]
Date: 2011-03-24 16:55:41


Author: e_r
Date: 2011-03-24 16:55:40 EDT (Thu, 24 Mar 2011)
New Revision: 70519
URL: http://svn.boost.org/trac/boost/changeset/70519

Log:
upd assign_v2
Added:
   sandbox/assign_v2/libs/assign/v2/test/unit_testing/chain.cpp (contents, props changed)
   sandbox/assign_v2/libs/assign/v2/test/unit_testing/conversion.cpp (contents, props changed)

Added: sandbox/assign_v2/libs/assign/v2/test/unit_testing/chain.cpp
==============================================================================
--- (empty file)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/chain.cpp 2011-03-24 16:55:40 EDT (Thu, 24 Mar 2011)
@@ -0,0 +1,31 @@
+//////////////////////////////////////////////////////////////////////////////
+// Boost.Assign v2 //
+// //
+// Copyright (C) 2003-2004 Thorsten Ottosen //
+// Copyright (C) 2010 Erwann Rogard //
+// Use, modification and distribution are subject to the //
+// 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_CHAIN_ER_2010_CPP
+#define LIBS_ASSIGN_V2_TEST_UNIT_TEST_CHAIN_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/chain.cpp>
+
+#include <boost/test/unit_test.hpp>
+using boost::unit_test::test_suite;
+test_suite* init_unit_test_suite( int argc, char* argv[] )
+{
+ test_suite* test = BOOST_TEST_SUITE( "BOOST_ASSIGN_V2" );
+ using namespace test_assign_v2;
+ {
+ test->add( BOOST_TEST_CASE( &xxx_chain::test ) );
+ }
+ return test;
+}
+
+#endif // LIBS_ASSIGN_V2_TEST_UNIT_TEST_CHAIN_ER_2010_CPP

Added: sandbox/assign_v2/libs/assign/v2/test/unit_testing/conversion.cpp
==============================================================================
--- (empty file)
+++ sandbox/assign_v2/libs/assign/v2/test/unit_testing/conversion.cpp 2011-03-24 16:55:40 EDT (Thu, 24 Mar 2011)
@@ -0,0 +1,31 @@
+//////////////////////////////////////////////////////////////////////////////
+// Boost.Assign v2 //
+// //
+// Copyright (C) 2003-2004 Thorsten Ottosen //
+// Copyright (C) 2010 Erwann Rogard //
+// Use, modification and distribution are subject to the //
+// 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_CONVERSION_ER_2010_CPP
+#define LIBS_ASSIGN_V2_TEST_UNIT_TEST_CONVERSION_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/conversion.cpp>
+
+#include <boost/test/unit_test.hpp>
+using boost::unit_test::test_suite;
+test_suite* init_unit_test_suite( int argc, char* argv[] )
+{
+ test_suite* test = BOOST_TEST_SUITE( "BOOST_ASSIGN_V2" );
+ using namespace test_assign_v2;
+ {
+ test->add( BOOST_TEST_CASE( &xxx_conversion::test ) );
+ }
+ return test;
+}
+
+#endif // LIBS_ASSIGN_V2_TEST_UNIT_TEST_CONVERSION_ER_2010_CPP
\ No newline at end of file


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