throwing_ptr
Smart pointers that throw on dereference if null
Functions
unique_ptr_make_unique.cpp File Reference

Go to the source code of this file.

Functions

 TEST_CASE ("make_unique struct with arguments", "[unique_ptr][make_unique]")
 
 TEST_CASE ("make_unique struct with no arguments", "[unique_ptr][make_unique]")
 
 TEST_CASE ("make_unique base type with argument", "[unique_ptr][make_unique]")
 
 TEST_CASE ("make_unique base type no arguments", "[unique_ptr][make_unique]")
 
 TEST_CASE ("make_unique array of struct", "[unique_ptr][make_unique][array]")
 
 TEST_CASE ("make_unique array of base type", "[unique_ptr][make_unique][array]")
 

Function Documentation

◆ TEST_CASE() [1/6]

TEST_CASE ( "make_unique struct with arguments"  ,
""  [unique_ptr][make_unique] 
)

Definition at line 18 of file unique_ptr_make_unique.cpp.

18  {
19  auto ptr = throwing::make_unique<Foo>(1, 2);
20  REQUIRE(ptr->n1 == 1);
21  REQUIRE(ptr->n2 == 2);
22 }

◆ TEST_CASE() [2/6]

TEST_CASE ( "make_unique struct with no arguments"  ,
""  [unique_ptr][make_unique] 
)

Definition at line 24 of file unique_ptr_make_unique.cpp.

24  {
25  auto ptr = throwing::make_unique<Foo>();
26  REQUIRE(ptr->n1 == 42);
27  REQUIRE(ptr->n2 == 84);
28 }

◆ TEST_CASE() [3/6]

TEST_CASE ( "make_unique base type with argument"  ,
""  [unique_ptr][make_unique] 
)

Definition at line 30 of file unique_ptr_make_unique.cpp.

30  {
31  auto ptr = throwing::make_unique<int>(42);
32  REQUIRE(*ptr == 42);
33 }

◆ TEST_CASE() [4/6]

TEST_CASE ( "make_unique base type no arguments"  ,
""  [unique_ptr][make_unique] 
)

Definition at line 35 of file unique_ptr_make_unique.cpp.

35  {
36  auto ptr = throwing::make_unique<int>();
37  REQUIRE(ptr);
38 }

◆ TEST_CASE() [5/6]

TEST_CASE ( "make_unique array of struct"  ,
""  [unique_ptr][make_unique][array] 
)

Definition at line 40 of file unique_ptr_make_unique.cpp.

40  {
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);
46 }

◆ TEST_CASE() [6/6]

TEST_CASE ( "make_unique array of base type"  ,
""  [unique_ptr][make_unique][array] 
)

Definition at line 48 of file unique_ptr_make_unique.cpp.

49  {
50  auto ptr = throwing::make_unique<int[]>(10);
51  REQUIRE(ptr);
52 }