Home | History | Annotate | Download | only in gmock

Lines Matching refs:property

261   // Asserts that the ON_CALL() statement has a certain property.
262 void AssertSpecProperty(bool property, const string& failure_message) const {
263 Assert(property, file_, line_, failure_message);
266 // Expects that the ON_CALL() statement has a certain property.
267 void ExpectSpecProperty(bool property, const string& failure_message) const {
268 Expect(property, file_, line_, failure_message);
732 // Asserts that the EXPECT_CALL() statement has the given property.
733 void AssertSpecProperty(bool property, const string& failure_message) const {
734 Assert(property, file_, line_, failure_message);
737 // Expects that the EXPECT_CALL() statement has the given property.
738 void ExpectSpecProperty(bool property, const string& failure_message) const {
739 Expect(property, file_, line_, failure_message);