We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cde9a74 commit 96eadf6Copy full SHA for 96eadf6
docs/reference/mocking.md
@@ -81,8 +81,8 @@ EXPECT_CALL(mock_object, method_name(matchers...))
81
.Times(cardinality) // Can be used at most once
82
.InSequence(sequences...) // Can be used any number of times
83
.After(expectations...) // Can be used any number of times
84
- .WillOnce(action) // Can be used any number of times
85
- .WillRepeatedly(action) // Can be used at most once
+ .WillRepeatedly(action) // Can be used any number of times
+ .WillOnce(action) // Can be used at most once
86
.RetiresOnSaturation(); // Can be used at most once
87
```
88
0 commit comments