throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_release.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 <throwing/unique_ptr.hpp>
8 
9 namespace {
10 struct Deleter{
11  Deleter() : called(false) {}
12  void operator()(int *p) {
13  called = true;
14  delete p;
15  }
16  bool called;
17 };
18 }
19 
20 TEST_CASE("unique_ptr to single object release",
21  "[unique_ptr][release]") {
22  int * p = new int;
23  throwing::unique_ptr<int, Deleter> uptr(p);
24  REQUIRE(uptr.get() == p);
25  REQUIRE(uptr.release() == p);
26  REQUIRE(uptr.get() == nullptr);
27  delete p;
28  REQUIRE(!uptr.get_deleter().called);
29 }
30 
31 TEST_CASE("unique_ptr to array release",
32  "[unique_ptr][release]") {
33  int * p = new int[10];
34  throwing::unique_ptr<int[], Deleter> uptr(p);
35  REQUIRE(uptr.get() == p);
36  REQUIRE(uptr.release() == p);
37  REQUIRE(uptr.get() == nullptr);
38  delete [] p;
39  REQUIRE(!uptr.get_deleter().called);
40 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")