Moq,SetupGet,模拟属性


94

我正在尝试模拟一个名为的类,该类UserInputEntity包含一个名为的属性ColumnNames(它确实包含其他属性,我只是将其简化为问题)

namespace CsvImporter.Entity
{
    public interface IUserInputEntity
    {
        List<String> ColumnNames { get; set; }
    }

    public class UserInputEntity : IUserInputEntity
    {
        public UserInputEntity(List<String> columnNameInputs)
        {
            ColumnNames = columnNameInputs;
        }

        public List<String> ColumnNames { get; set; }
    }
}

我有一个主持人班:

namespace CsvImporter.UserInterface
{
    public interface IMainPresenterHelper
    {
        //...
    }

    public class MainPresenterHelper:IMainPresenterHelper
    {
        //....
    }

    public class MainPresenter
    {
        UserInputEntity inputs;

        IFileDialog _dialog;
        IMainForm _view;
        IMainPresenterHelper _helper;

        public MainPresenter(IMainForm view, IFileDialog dialog, IMainPresenterHelper helper)
        {
            _view = view;
            _dialog = dialog;
            _helper = helper;
            view.ComposeCollectionOfControls += ComposeCollectionOfControls;
            view.SelectCsvFilePath += SelectCsvFilePath;
            view.SelectErrorLogFilePath += SelectErrorLogFilePath;
            view.DataVerification += DataVerification;
        }


        public bool testMethod(IUserInputEntity input)
        {
            if (inputs.ColumnNames[0] == "testing")
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
}

我尝试了以下测试,在此我模拟实体,尝试获取ColumnNames属性以返回已初始化的属性,List<string>()但它不起作用:

    [Test]
    public void TestMethod_ReturnsTrue()
    {
        Mock<IMainForm> view = new Mock<IMainForm>();
        Mock<IFileDialog> dialog = new Mock<IFileDialog>();
        Mock<IMainPresenterHelper> helper = new Mock<IMainPresenterHelper>();

        MainPresenter presenter = new MainPresenter(view.Object, dialog.Object, helper.Object);

        List<String> temp = new List<string>();
        temp.Add("testing");

        Mock<IUserInputEntity> input = new Mock<IUserInputEntity>();

    //Errors occur on the below line.
        input.SetupGet(x => x.ColumnNames).Returns(temp[0]);

        bool testing = presenter.testMethod(input.Object);
        Assert.AreEqual(testing, true);
    }

我得到的错误指出存在一些无效的参数+参数1无法从字符串转换为

System.Func<System.Collection.Generic.List<string>>

任何帮助,将不胜感激。

Answers:


192

ColumnNames是type的属性,List<String>因此在设置时,您需要List<String>Returns调用中传递a作为参数(或返回a的func List<String>)。

但是通过此行,您试图返回一个 string

input.SetupGet(x => x.ColumnNames).Returns(temp[0]);

这导致了异常。

更改它以返回整个列表:

input.SetupGet(x => x.ColumnNames).Returns(temp);

3
看来我需要休息一下。非常感谢您的帮助!(+1人将在7分钟内接受您的回答)
汉斯·鲁德尔

18
SetupGet()是我一直在寻找的东西。谢谢!
imnk 2015年

和我一样,使用SetUpGet()作为类属性,它可以正常工作。
hussian

4

但是,虽然模拟只读属性意味着仅具有getter方法的属性,但您应将其声明为虚拟,否则将抛出System.NotSupportedException,因为仅在VB中受支持,因为当我们模拟任何内容时,moq会在内部覆盖并创建代理。


1
那么如何在接口中将只读属性声明为虚拟属性呢?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.