Overload List

  NameDescription
Verify()()()
Verifies that all verifiable expectations have been met.
(Inherited from Mock.)
Verify(Expression<(Of <(Action<(Of <(T>)>)>)>))
Verifies that a specific invocation matching the given expression was performed on the mock. Use in conjuntion with the default Loose.
Verify<(Of <(TResult>)>)(Expression<(Of <(Func<(Of <(T, TResult>)>)>)>))
Verifies that a specific invocation matching the given expression was performed on the mock. Use in conjuntion with the default Loose.
Verify(Expression<(Of <(Action<(Of <(T>)>)>)>), Times)
Verifies that a specific invocation matching the given expression was performed on the mock. Use in conjuntion with the default Loose.
Verify(Expression<(Of <(Action<(Of <(T>)>)>)>), String)
Verifies that a specific invocation matching the given expression was performed on the mock, specifying a failure error message. Use in conjuntion with the default Loose.
Verify<(Of <(TResult>)>)(Expression<(Of <(Func<(Of <(T, TResult>)>)>)>), Times)
Verifies that a specific invocation matching the given expression was performed on the mock. Use in conjuntion with the default Loose.
Verify<(Of <(TResult>)>)(Expression<(Of <(Func<(Of <(T, TResult>)>)>)>), String)
Verifies that a specific invocation matching the given expression was performed on the mock, specifying a failure error message.
Verify(Expression<(Of <(Action<(Of <(T>)>)>)>), Times, String)
Verifies that a specific invocation matching the given expression was performed on the mock, specifying a failure error message. Use in conjuntion with the default Loose.
Verify<(Of <(TResult>)>)(Expression<(Of <(Func<(Of <(T, TResult>)>)>)>), Times, String)
Verifies that a specific invocation matching the given expression was performed on the mock, specifying a failure error message.

See Also