internal bool HasExpectationForIgnoringIsActive(Invocation invocation) { return(_expectations.MatchesIgnoringIsActive(invocation)); }
/// <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)); }