web-dev-qa-db-ja.com

Moq、SetupGet、プロパティのモック

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>>

任意の助けをいただければ幸いです。

70
Hans Rudel

ColumnNamesList<String>型のプロパティであるため、セットアップ時にReturns呼び出しでList<String>を引数(またはList<String>を返すfunc)として渡す必要があります。

しかし、この行では、stringのみを返そうとしています。

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

これが例外の原因です。

リスト全体を返すように変更します。

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