7 #include <throwing/unique_ptr.hpp> 13 Foo(
int a,
int b) : n1(a), n2(b) {}
14 Foo() : n1(42), n2(84) {}
18 TEST_CASE(
"make_unique struct with arguments",
"[unique_ptr][make_unique]") {
19 auto ptr = throwing::make_unique<Foo>(1, 2);
20 REQUIRE(ptr->n1 == 1);
21 REQUIRE(ptr->n2 == 2);
24 TEST_CASE(
"make_unique struct with no arguments",
"[unique_ptr][make_unique]") {
25 auto ptr = throwing::make_unique<Foo>();
26 REQUIRE(ptr->n1 == 42);
27 REQUIRE(ptr->n2 == 84);
30 TEST_CASE(
"make_unique base type with argument",
"[unique_ptr][make_unique]") {
31 auto ptr = throwing::make_unique<
int>(42);
35 TEST_CASE(
"make_unique base type no arguments",
"[unique_ptr][make_unique]") {
36 auto ptr = throwing::make_unique<
int>();
40 TEST_CASE(
"make_unique array of struct",
"[unique_ptr][make_unique][array]") {
41 auto ptr = throwing::make_unique<Foo[]>(10);
42 REQUIRE(ptr[0].n1 == 42);
43 REQUIRE(ptr[0].n2 == 84);
44 REQUIRE(ptr[9].n1 == 42);
45 REQUIRE(ptr[9].n2 == 84);
48 TEST_CASE(
"make_unique array of base type",
49 "[unique_ptr][make_unique][array]") {
50 auto ptr = throwing::make_unique<
int[]>(10);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")