()
| 157 | |
| 158 | |
| 159 | def test_rtrn_unique_ptr_cref(): |
| 160 | obj0 = m.rtrn_unique_ptr_cref("") |
| 161 | assert m.get_mtxt(obj0) == "static_ctor_arg" |
| 162 | obj1 = m.rtrn_unique_ptr_cref("passed_mtxt_1") |
| 163 | assert m.get_mtxt(obj1) == "passed_mtxt_1" |
| 164 | assert m.get_mtxt(obj0) == "passed_mtxt_1" |
| 165 | assert obj0 is obj1 |
| 166 | |
| 167 | |
| 168 | def test_unique_ptr_cref_roundtrip(): |
nothing calls this directly
no outgoing calls
no test coverage detected