NUnit生成的Mock Repository在不同的测试用例中返回相同的对象

时间:2017-03-10 01:49:27

标签: c# asp.net nunit moq rhino-mocks

您好,我刚开始使用测试驱动开发。我有一个代码,我有两个测试用例

     [Test, Order(3)]
    public void Should_Not_Create_ServiceAccountTaxCode_If_BillType_Is_Not_RateReady()
    {
        //ARRANGE
        var customerDetailsViewForBillTYpeRateReady = new CustomerTaxDetailsView
        {
            BillType = (int)BillTypes.BillReady
        };

        _repository.Stub(x => x.GetCustomerDetailsForTaxes(Arg<int>.Is.Anything)).Return(dict.Dequeue());


        //ACT
        var result = _concern.PopulateServiceAccountWithTaxDetails(Arg<int>.Is.Anything);

    [Test, Order(4)]
    public void Should_Create_ServiceAccountTaxCode_If_BillType_Is_RateReady()
    {
        //ARRANGE
        const int serviceAccountId = 1;
        var customerDetailsView = new CustomerTaxDetailsView
        {
            BillType = (int)BillTypes.RateReady,
            ServiceTypeId = (int)ServiceTypes.Electric
        };
       _repository.Stub(x => x.GetCustomerDetailsForTaxes(serviceAccountId))
            .Return(customerDetailsView).Repeat.Once();
        var result = _concern.PopulateServiceAccountWithTaxDetails(serviceAccountId);

我正在使用

中的以下语法生成模拟
    [OneTimeSetUp]
    public void Initialize()
    {
     _repository = MockRepository.GenerateMock<IServiceAccountTaxCodeRepository>();

唯一的问题是,在第二个测试用例中,我的结果对象是来自第一个测试用例的customerDetailsViewForBillTYpeRateReady。为什么会这样呢?如果我独立运行这些测试,那么一切都会通过。任何帮助将不胜感激..

1 个答案:

答案 0 :(得分:1)

我认为您的问题是因为您在同一个GetCustomerDetailsForTaxes()对象的两个位置配置方法_repository。此配置将始终执行:

_repository.Stub(x => x.GetCustomerDetailsForTaxes(Arg<int>.Is.Anything)).Return(dict.Dequeue());

原因是您指定了Arg<int>.Is.Anything。因此,测试用例将获取该配置,因为在第二个测试用例中,您const int serviceAccountId = 1;也是Arg<int>.Is.Anything

我宁愿在第一个测试用例中指定

 const int serviceAccountId = 2;
_repository.Stub(x => x.GetCustomerDetailsForTaxes(serviceAccountId)).Return(dict.Dequeue());

现在,您将对两个测试用例进行不同的配置。