throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_ostream.cpp
Go to the documentation of this file.
1 // Copyright Claudio Bantaloukas 2017-2018.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <catch.hpp>
7 #include <sstream>
8 #include <throwing/unique_ptr.hpp>
9 
10 TEST_CASE("unique_ptr operator<< prints stored ptr", "[unique_ptr][streams]") {
11  auto ptr = throwing::make_unique<int>();
12  std::stringstream ss_ptr;
13  ss_ptr << ptr.get();
14  std::stringstream ss_tptr;
15  ss_tptr << ptr;
16  REQUIRE(ss_tptr.str() == ss_ptr.str());
17 }
18 
19 TEST_CASE("unique_ptr to array operator<< prints stored ptr",
20  "[unique_ptr][array][streams]") {
21  auto ptr = throwing::make_unique<int[]>(10);
22  std::stringstream ss_ptr;
23  ss_ptr << ptr.get();
24  std::stringstream ss_tptr;
25  ss_tptr << ptr;
26  REQUIRE(ss_tptr.str() == ss_ptr.str());
27 }
28 
29 TEST_CASE("unique_ptr operator<< prints nullptr",
30  "[unique_ptr][streams][nullptr]") {
31  throwing::unique_ptr<int> ptr;
32  std::stringstream ss_ptr;
33  ss_ptr << ptr.get();
34  std::stringstream ss_tptr;
35  ss_tptr << ptr;
36  REQUIRE(ss_tptr.str() == ss_ptr.str());
37 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")