throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_ordering.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/shared_ptr.hpp>
8 
9 namespace {
10 struct Foo {
11  int n1;
12  int n2;
13  Foo(int a, int b) : n1(a), n2(b) {}
14 };
15 } // namespace
16 
17 TEST_CASE("owner_before of shared_ptr", "[shared_ptr][ordering]") {
18  Foo *ptr = new Foo(1, 2);
19  throwing::shared_ptr<Foo> p1(ptr);
20  throwing::shared_ptr<int> p2(p1, &p1->n1);
21  throwing::shared_ptr<int> p3(p1, &p1->n2);
22  // REQUIRE( p2 < p3);
23  // REQUIRE_FALSE( p3 < p2);
24  REQUIRE_FALSE(p2.owner_before(p3));
25  REQUIRE_FALSE(p3.owner_before(p2));
26 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")