1// 1999-06-10 bkoz
2
3// Copyright (C) 1994-2015 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library.  This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING3.  If not see
18// <http://www.gnu.org/licenses/>.
19
20// 21.3.5.6 basic_string::replace
21
22#include <string>
23#include <testsuite_hooks.h>
24
25// Some more tests for
26// template<typename InputIter>
27//   wstring& replace(iterator it1, iterator it2, InputIter j1, InputIter j2)
28void
29test04()
30{
31  bool test __attribute__((unused)) = true;
32  std::wstring str01 = L"geogaddi";
33  std::wstring str02;
34
35  typedef std::wstring::iterator iterator;
36  typedef std::wstring::const_iterator const_iterator;
37
38  iterator it1 = str01.begin();
39  iterator it2 = str01.end();
40  str02.replace(str02.begin(), str02.end(), it1, it2);
41  VERIFY(str02 == L"geogaddi");
42
43  str02 = L"boards";
44  const_iterator c_it1 = str01.begin();
45  const_iterator c_it2 = str01.end();
46  str02.replace(str02.begin(), str02.end(), c_it1, c_it2);
47  VERIFY(str02 == L"geogaddi");
48
49  str02 = L"boards";
50  const wchar_t* c_ptr1 = str01.c_str();
51  const wchar_t* c_ptr2 = str01.c_str() + 8;
52  str02.replace(str02.begin(), str02.end(), c_ptr1, c_ptr2);
53  VERIFY(str02 == L"geogaddi");
54
55  str02 = L"boards";
56  wchar_t* ptr1 = &*str01.begin();
57  wchar_t* ptr2 = ptr1 + str01.length();
58  str02.replace(str02.begin(), str02.end(), ptr1, ptr2);
59  VERIFY(str02 == L"geogaddi");
60}
61
62int main()
63{
64  test04();
65  return 0;
66}
67