OUT parameters
yes, you can allocate the OUT parameters with MOQ. When you call the Setup method, MOQ will make a snapshot on the value of the OUT parameters.
Public Interface IService
{{
void dosomething (out string a);
}
[Testmethod]
Public void testparam ()
{{
var service = new mock
public interface IService
{
void DoSomething(out string a);
}
[TestMethod]
public void TestOutParam()
{
var service = new Mock();
string expectedValue = "value";
service.Setup(s => s.DoSomething(out expectedValue));
string actualValue;
service.Object.DoSomething(out actualValue);
Assert.AreEqual(expectedValue, actualValue);
}
At present, MOQ does not support setting REF parameters, but the search for solutions continues. More resources
If you want to know more information, the MOQ Quick Getting Started Guide provides a comprehensive overview of the framework of the framework:
https://github.com/moq/moq4/wiki/quickstart
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3