diff options
Diffstat (limited to 'unittests/ADT')
-rw-r--r-- | unittests/ADT/polymorphic_ptr_test.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unittests/ADT/polymorphic_ptr_test.cpp b/unittests/ADT/polymorphic_ptr_test.cpp index 3606698..90c3385 100644 --- a/unittests/ADT/polymorphic_ptr_test.cpp +++ b/unittests/ADT/polymorphic_ptr_test.cpp @@ -17,9 +17,13 @@ namespace { struct S { S(int x) : x(x) {} + S *clone() { return new S(*this); } int x; }; +// A function that forces the return of a copy. +polymorphic_ptr<S> dummy_copy(const polymorphic_ptr<S> &arg) { return arg; } + TEST(polymorphic_ptr_test, Basic) { polymorphic_ptr<S> null; EXPECT_FALSE((bool)null); @@ -66,6 +70,13 @@ TEST(polymorphic_ptr_test, Basic) { EXPECT_EQ(s, &*p); EXPECT_FALSE((bool)p2); EXPECT_TRUE(!p2); + + // Force copies and that everything survives. + polymorphic_ptr<S> p3 = dummy_copy(polymorphic_ptr<S>(p)); + EXPECT_TRUE((bool)p3); + EXPECT_FALSE(!p3); + EXPECT_NE(s, &*p3); + EXPECT_EQ(42, p3->x); } } |