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

Go to the source code of this file.

Functions

 TEST_CASE ("make_shared struct with arguments", "[shared_ptr][make_shared]")
 
 TEST_CASE ("make_shared struct with no arguments", "[shared_ptr][make_shared]")
 
 TEST_CASE ("make_shared base type with argument", "[shared_ptr][make_shared]")
 
 TEST_CASE ("make_shared base type no arguments", "[shared_ptr][make_shared]")
 
 TEST_CASE ("allocate_shared with arguments", "[shared_ptr][allocate_shared]")
 
 TEST_CASE ("allocate_shared with no arguments", "[shared_ptr][allocate_shared]")
 
 TEST_CASE ("allocate_shared base type with arguments", "[shared_ptr][allocate_shared]")
 
 TEST_CASE ("allocate_shared base type with no arguments", "[shared_ptr][allocate_shared]")
 

Function Documentation

◆ TEST_CASE() [1/8]

TEST_CASE ( "make_shared struct with arguments"  ,
""  [shared_ptr][make_shared] 
)

Definition at line 18 of file shared_ptr_make_shared.cpp.

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

◆ TEST_CASE() [2/8]

TEST_CASE ( "make_shared struct with no arguments"  ,
""  [shared_ptr][make_shared] 
)

Definition at line 24 of file shared_ptr_make_shared.cpp.

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

◆ TEST_CASE() [3/8]

TEST_CASE ( "make_shared base type with argument"  ,
""  [shared_ptr][make_shared] 
)

Definition at line 30 of file shared_ptr_make_shared.cpp.

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

◆ TEST_CASE() [4/8]

TEST_CASE ( "make_shared base type no arguments"  ,
""  [shared_ptr][make_shared] 
)

Definition at line 35 of file shared_ptr_make_shared.cpp.

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

◆ TEST_CASE() [5/8]

TEST_CASE ( "allocate_shared with arguments"  ,
""  [shared_ptr][allocate_shared] 
)

Definition at line 40 of file shared_ptr_make_shared.cpp.

40  {
41  std::allocator<Foo> allocator;
42  auto ptr = throwing::allocate_shared<Foo>(allocator, 1, 2);
43  REQUIRE(ptr->n1 == 1);
44  REQUIRE(ptr->n2 == 2);
45 }

◆ TEST_CASE() [6/8]

TEST_CASE ( "allocate_shared with no arguments"  ,
""  [shared_ptr][allocate_shared] 
)

Definition at line 47 of file shared_ptr_make_shared.cpp.

48  {
49  std::allocator<Foo> allocator;
50  auto ptr = throwing::allocate_shared<Foo>(allocator);
51  REQUIRE(ptr->n1 == 0);
52  REQUIRE(ptr->n2 == 0);
53 }

◆ TEST_CASE() [7/8]

TEST_CASE ( "allocate_shared base type with arguments"  ,
""  [shared_ptr][allocate_shared] 
)

Definition at line 55 of file shared_ptr_make_shared.cpp.

56  {
57  std::allocator<int> allocator;
58  auto ptr = throwing::allocate_shared<int>(allocator, 42);
59  REQUIRE(*ptr == 42);
60 }

◆ TEST_CASE() [8/8]

TEST_CASE ( "allocate_shared base type with no arguments"  ,
""  [shared_ptr][allocate_shared] 
)

Definition at line 62 of file shared_ptr_make_shared.cpp.

63  {
64  std::allocator<int> allocator;
65  auto ptr = throwing::allocate_shared<int>(allocator);
66  REQUIRE(ptr);
67 }