Пример #1
0
 internal bool HasExpectationForIgnoringIsActive(Invocation invocation)
 {
     return(_expectations.MatchesIgnoringIsActive(invocation));
 }
Пример #2
0
 /// <summary>
 /// Determines whether there exist expectations for the specified invocation.
 /// </summary>
 /// <param name="invocation">The invocation.</param>
 /// <returns><c>true</c> if there exist expectations for the specified invocation; otherwise, <c>false</c>.
 /// </returns>
 internal bool HasExpectationFor(Invocation invocation)
 {
     return(_expectations.Matches(invocation));
 }