7 #include <throwing/unique_ptr.hpp> 12 int foo()
const {
return bar; }
16 TEST_CASE(
"unique_ptr dereference via * throws on nullptr",
17 "[unique_ptr][dereference][nullptr]") {
18 throwing::unique_ptr<
int> nothing;
19 REQUIRE_THROWS_AS((*nothing)++, throwing::base_null_ptr_exception);
20 REQUIRE_THROWS_AS((*nothing)++, throwing::null_ptr_exception<
int>);
23 TEST_CASE(
"unique_ptr dereference via -> throws on nullptr",
24 "[unique_ptr][dereference][nullptr]") {
25 throwing::unique_ptr<Foo> nothing;
26 REQUIRE_THROWS_AS(nothing->foo(), throwing::base_null_ptr_exception);
27 REQUIRE_THROWS_AS(nothing->foo(), throwing::null_ptr_exception<Foo>);
30 TEST_CASE(
"type specific unique_ptr exceptions are caught by base exception",
31 "[unique_ptr][exception]") {
32 throwing::unique_ptr<
int> nothing;
35 }
catch (
const throwing::null_ptr_exception<
float> &) {
37 }
catch (
const throwing::base_null_ptr_exception &e) {
38 REQUIRE(std::string(e.what()) ==
"Dereference of nullptr");
43 "type specific unique_ptr exceptions are caught by using correct type",
44 "[unique_ptr][exception]") {
45 throwing::unique_ptr<
int> nothing;
48 }
catch (
const throwing::null_ptr_exception<
float> &) {
50 }
catch (
const throwing::null_ptr_exception<
int> &) {
54 TEST_CASE(
"unique_ptr exceptions have non-empty what()",
55 "[unique_ptr][exception]") {
56 throwing::unique_ptr<
int> nothing;
59 }
catch (
const throwing::base_null_ptr_exception &e) {
60 std::string what = e.what_type();
61 REQUIRE_FALSE(what.empty());
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")