为什么测试通过vb?它应该失败(它在c#版本中失败)

时间:2014-08-01 09:25:22

标签: c# vb.net tdd nunit nbehave

我跟随 Professional.Test.Driven.Development.with.Csharp 中的示例 我将代码从C#转换为VB。 (这个例子是第7章的开头)

现在有了

Public Class ItemType
   Public Overridable Property Id As Integer
End Class

Public Interface IItemTypeRepository
    Function Save(ItemType As ItemType) As Integer
End Interface

Public Class ItemTypeRepository
  Implements IItemTypeRepository

Public Function Save(ItemType As ItemType) As Integer Implements IItemTypeRepository.Save
    Throw New NotImplementedException
End Function
End Class

在TestUnit项目中

<TestFixture>
Public Class Specification
   Inherits SpecBase
End Class

在vb.net中编写测试时(应该失败)它很好地传递(整数值为0 = 0)

Public Class when_working_with_the_item_type_repository
   Inherits Specification
End Class

Public Class and_saving_a_valid_item_type
   Inherits when_working_with_the_item_type_repository

   Private _result As Integer
   Private _itemTypeRepository As IItemTypeRepository
   Private _testItemType As ItemType
   Private _itemTypeId As Integer

   Protected Overrides Sub Because_of()
       _result = _itemTypeRepository.Save(_testItemType)
   End Sub

   <Test>
   Public Sub then_a_valid_item_type_id_should_be_returned()
       _result.ShouldEqual(_itemTypeId)
   End Sub
End Clas

仅供参考C#中的相同代码。测试失败

using NBehave.Spec.NUnit;
using NUnit.Framework;
using OSIM.Core;


namespace CSharpOSIM.UnitTests.OSIM.Core
{
    public class when_working_with_the_item_type_repository : Specification
{
}
    public class and_saving_a_valid_item_type : when_working_with_the_item_type_repository
        {
        private int _result;
        private IItemTypeRepository _itemTypeRepository;
        private ItemType _testItemType;
        private int _itemTypeId;

        protected override void Because_of()
        {
            _result = _itemTypeRepository.Save(_testItemType);
        }

        [Test]
        public void then_a_valid_item_type_id_should_be_returned()
        {
            _result.ShouldEqual(_itemTypeId);
        }
    }
}

此行测试失败:

_result = _itemTypeRepository.Save(_testItemType);

对象引用未设置为对象的实例。

1 个答案:

答案 0 :(得分:2)

在VB.NET与C#中,值类型变量的行为方式存在细微差别。

在C#中,创建该变量时没有自动分配值;它是nullNothing)。因此,您无法在声明后直接使用它们;该变量的第一个操作必须是赋值。

另一方面,在VB.NET中,首次使用时会分配一个默认值。数字为0FalseBoolean1/1/0001 12:00 AMDateString为空字符串等。它们不为空。因此,您可以在声明后立即开始使用它们。

e.g。

C#:

int i;
i++;        //you can't do this

int j = 0;
j++;        // this works

VB.NET:

Dim i As Integer
i += 1      ' works ok

Dim j As Integer = 0
j += 1      ' this also works

修改

请阅读有关String类型变量行为的评论。