@ -290,31 +290,6 @@
</summary>
<value > </value>
</member>
<member name= "T:Rhino.Mocks.Constraints.LambdaConstraint" >
<summary >
A constraint based on lambda expression, we are using Expression{T}
because we want to be able to get good error reporting on that.
</summary>
</member>
<member name= "M:Rhino.Mocks.Constraints.LambdaConstraint.#ctor(System.Linq.Expressions.Expression)" >
<summary >
Initializes a new instance of the <see cref= "T:Rhino.Mocks.Constraints.LambdaConstraint" /> class.
</summary>
<param name= "expr" > The expr.</param>
</member>
<member name= "M:Rhino.Mocks.Constraints.LambdaConstraint.Eval(System.Object)" >
<summary >
determains if the object pass the constraints
</summary>
<param name= "obj" > </param>
<returns > </returns>
</member>
<member name= "P:Rhino.Mocks.Constraints.LambdaConstraint.Message" >
<summary >
Gets the message for this constraint
</summary>
<value > </value>
</member>
<member name= "T:Rhino.Mocks.Constraints.CollectionEqual" >
<summary >
Constrain that the list contains the same items as the parameter list
@ -3819,7 +3794,7 @@
</summary>
<typeparam name= "T" > </typeparam>
</member>
<member name= "M:Rhino.Mocks.Arg`1.Matches(System.Linq.Expressions.Expression{System. Predicate{`0} })" >
<member name= "M:Rhino.Mocks.Arg`1.Matches``1 (System.Predicate{`` 0})" >
<summary >
Register the predicate as a constraint for the current call.
</summary>
@ -4781,194 +4756,6 @@
Logs all method calls for methods
</summary>
</member>
<member name= "T:Rhino.Mocks.RhinoMocksExtensions" >
<summary >
A set of extension methods that adds Arrange Act Assert mode to Rhino Mocks
</summary>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Expect``1(``0,System.Action{``0})" >
<summary >
Create an expectation on this mock for this action to occur
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<returns > </returns>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.BackToRecord``1(``0)" >
<summary >
Reset all expectations on this mock object
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.BackToRecord``1(``0,Rhino.Mocks.BackToRecordOptions)" >
<summary >
Reset the selected expectation on this mock object
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "options" > The options to reset the expectations on this mock.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Replay``1(``0)" >
<summary >
Cause the mock state to change to replay, any further call is compared to the
ones that were called in the record state.
</summary>
<param name= "mock" > the mocked object to move to replay state</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.GetMockRepository``1(``0)" >
<summary >
Gets the mock repository for this specificied mock object
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<returns > </returns>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Expect``2(``0,System.Func{``0,``1})" >
<summary >
Create an expectation on this mock for this action to occur
</summary>
<typeparam name= "T" > </typeparam>
<typeparam name= "R" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<returns > </returns>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Stub``1(``0,System.Action{``0})" >
<summary >
Tell the mock object to perform a certain action when a matching
method is called.
Does not create an expectation for this method.
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<returns > </returns>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Stub``2(``0,System.Func{``0,``1})" >
<summary >
Tell the mock object to perform a certain action when a matching
method is called.
Does not create an expectation for this method.
</summary>
<typeparam name= "T" > </typeparam>
<typeparam name= "R" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<returns > </returns>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.GetArgumentsForCallsMadeOn``1(``0,System.Action{``0})" >
<summary >
Gets the arguments for calls made on this mock object and the method that was called
in the action.
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<returns > </returns>
<example >
Here we will get all the arguments for all the calls made to DoSomething(int)
<code >
var argsForCalls = foo54.GetArgumentsForCallsMadeOn(x => x.DoSomething(0))
</code>
</example>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.GetArgumentsForCallsMadeOn``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})" >
<summary >
Gets the arguments for calls made on this mock object and the method that was called
in the action and matches the given constraints
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<param name= "setupConstraints" > The setup constraints.</param>
<returns > </returns>
<example >
Here we will get all the arguments for all the calls made to DoSomething(int)
<code >
var argsForCalls = foo54.GetArgumentsForCallsMadeOn(x => x.DoSomething(0))
</code>
</example>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Action{``0})" >
<summary >
Asserts that a particular method was called on this mock object
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.AssertWasCalled``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})" >
<summary >
Asserts that a particular method was called on this mock object that match
a particular constraint set.
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<param name= "setupConstraints" > The setup constraints.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Action{``0})" >
<summary >
Asserts that a particular method was NOT called on this mock object
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.AssertWasNotCalled``1(``0,System.Action{``0},System.Action{Rhino.Mocks.Interfaces.IMethodOptions{System.Object}})" >
<summary >
Asserts that a particular method was NOT called on this mock object that match
a particular constraint set.
</summary>
<typeparam name= "T" > </typeparam>
<param name= "mock" > The mock.</param>
<param name= "action" > The action.</param>
<param name= "setupConstraints" > The setup constraints.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.VerifyAllExpectations(System.Object)" >
<summary >
Verifies all expectations on this mock object
</summary>
<param name= "mockObject" > The mock object.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.GetEventRaiser``1(``0,System.Action{``0})" >
<summary >
Gets the event raiser for the event that was called in the action passed
</summary>
<typeparam name= "TEventSource" > The type of the event source.</typeparam>
<param name= "mockObject" > The mock object.</param>
<param name= "eventSubscription" > The event subscription.</param>
<returns > </returns>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Raise``1(``0,System.Action{``0},System.Object,System.EventArgs)" >
<summary >
Raise the specified event using the passed arguments.
The even is extracted from the passed labmda
</summary>
<typeparam name= "TEventSource" > The type of the event source.</typeparam>
<param name= "mockObject" > The mock object.</param>
<param name= "eventSubscription" > The event subscription.</param>
<param name= "sender" > The sender.</param>
<param name= "args" > The <see cref= "T:System.EventArgs" /> instance containing the event data.</param>
</member>
<member name= "M:Rhino.Mocks.RhinoMocksExtensions.Raise``1(``0,System.Action{``0},System.Object[])" >
<summary >
Raise the specified event using the passed arguments.
The even is extracted from the passed labmda
</summary>
<typeparam name= "TEventSource" > The type of the event source.</typeparam>
<param name= "mockObject" > The mock object.</param>
<param name= "eventSubscription" > The event subscription.</param>
<param name= "args" > The args.</param>
</member>
<member name= "T:Rhino.Mocks.RhinoMocksExtensions.VoidType" >
<summary >
Fake type that disallow creating it.
Should have been System.Type, but we can't use it.
</summary>
</member>
<member name= "T:Rhino.Mocks.SetupResult" >
<summary >
Setup method calls to repeat any number of times.