2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-27 19:32:11 +00:00
Files
test/doc/snippet/snippet17.cpp
Raffi Enficiaud a964366d5a Some cleanup over the snippet files
Adding the licenses as suggested by the introspection tool
2015-02-03 02:10:30 +01:00

32 lines
968 B
C++

// (C) Copyright Gennadiy Rozental 2001-2015.
// Distributed under 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)
//
// See http://www.boost.org/libs/test for the library home page.
//
//[snippet17
#define __BOOST_TEST_MODULE__ const_string test
#include <boost/test/unit_test.hpp>
__BOOST_AUTO_TEST_CASE__( constructors_test )
{
//...
}
BOOST_AUTO_TEST_CASE( data_access_test )
{
const_string cs1( "test_string" ); // 1 //
__BOOST_CHECK_EQUAL__( cs1[(size_t)0], 't' );
BOOST_CHECK_EQUAL( cs1[(size_t)4], '_' );
BOOST_CHECK_EQUAL( cs1[cs1.length()-1], 'g' );
BOOST_CHECK_EQUAL( cs1[(size_t)0], cs1.at( 0 ) ); // 2 //
BOOST_CHECK_EQUAL( cs1[(size_t)2], cs1.at( 5 ) );
BOOST_CHECK_EQUAL( cs1.at( cs1.length() - 1 ), 'g' );
BOOST_CHECK_THROW( cs1.at( cs1.length() ), std::out_of_range ); // 3 //
}
//]