property_observer_unittest.cc | 47 : test_accessor_(new TestPropertyAccessor()), 48 bool_accessor_(test_accessor_) {} 63 TestPropertyAccessor* test_accessor_; member in class:shill::PropertyObserverTest 64 BoolAccessor bool_accessor_; // Owns reference to |test_accessor_|. 68 EXPECT_CALL(*test_accessor_, Get(_)).WillOnce(Return(true)); 74 Mock::VerifyAndClearExpectations(test_accessor_); 77 EXPECT_CALL(*test_accessor_, Get(_)) 83 EXPECT_CALL(*test_accessor_, Get(_)).WillOnce(Return(true)); 85 Mock::VerifyAndClearExpectations(test_accessor_); 89 EXPECT_CALL(*test_accessor_, Get(_)).WillOnce(Return(false)) [all...] |