Home | History | Annotate | Download | only in update_manager

Lines Matching refs:copy

6 // You may obtain a copy of the License at
43 // Generate and validate a copy.
52 // Check that the content of the copy was not affected (distinct instance).
55 // Generate and validate a second copy.
80 // Tells if the instance was constructed using the copy-constructor.
89 // Ensures that CopyVariables indeed uses the copy constructor.
94 unique_ptr<const CopyConstructorTestClass> copy(
96 ASSERT_NE(nullptr, copy.get());
97 EXPECT_TRUE(copy->copied_);
133 unique_ptr<const CopyConstructorTestClass> copy(
136 ASSERT_NE(nullptr, copy.get());
137 EXPECT_TRUE(copy->copied_);
138 EXPECT_EQ(12, copy->val_); // Check that copying occurred once.