Interface IIgnorable<TContainer>
Arrangement filtering interface.
Inherited Members
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6>(Func<T1, T2, T3, T4, T5, T6, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7>(Func<T1, T2, T3, T4, T5, T6, T7, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8>(Func<T1, T2, T3, T4, T5, T6, T7, T8, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, Boolean>)
IWhen<TContainer>.When<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, Boolean>)
Assembly: Telerik.JustMock.dll
Syntax
public interface IIgnorable<TContainer> : IWhen<TContainer>
Type Parameters
Methods
Specifies to ignore any argument for the target call.
Declaration
TContainer IgnoreArguments()
Returns
TContainer
Func or Action Container
|
Specifies an additional condition that must be true for this arrangement to be
considered when the arranged member is called. This condition is evaluated in addition
to the conditions imposed by any argument matchers in the arrangement.
This method allows a more general way of matching arrangements than argument matchers do.
Declaration
TContainer When(Func<bool> condition)
Parameters
System.Func<System.Boolean>
condition
A function that should return 'true' when this
arrangement should be considered and 'false' if this arrangement doesn't match the user criteria.
|
Returns
Extension Methods