Moq,SetupGet,嘲弄一个属性

时间:2012-08-27 12:14:35

标签: c# c#-4.0 properties moq

我正在尝试模拟一个名为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>>

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:139)

ColumnNamesList<String>类型的属性,因此在设置时,您需要在List<String>调用中传递Returns作为参数(或函数返回List<String>

但是使用此行,您只想返回string

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

导致异常。

将其更改为返回整个列表:

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

答案 1 :(得分:3)

但是模拟只读属性意味着只有getter方法的属性才应该将它声明为虚拟,否则将抛出System.NotSupportedException,因为它只在VB中受支持,因为moq在内部覆盖并在我们模拟任何东西时创建代理。