为什么MSTest和TestDriven.NET使用此代码表现不同?

时间:2009-02-04 12:37:43

标签: frameworks tdd mstest testdriven.net

查看此代码:

internal static readonly Dictionary<Type, Func<IModel>> typeToCreator = new Dictionary<Type, Func<IModel>>();
protected static object _lock;        


public virtual void Register<T>(Func<IModel> creator)
{
    lock (_lock)
    {
    if (typeToCreator.ContainsKey(typeof(T)))
        typeToCreator[typeof(T)] = creator;
    else
        typeToCreator.Add(typeof(T), creator);
    }
}

当我使用运行此测试中的代码时(testframework是MSTest):

[TestMethod]
public void Must_Be_BasePresenterType()
{
     var sut = new ListTilbudPresenter(_tilbudView);
     Assert.IsInstanceOfType(sut, typeof(BasePresenter));
}

... MSTest传递它并且TestDriven.NET因为_lock为空而失败。

为什么MSTest没有通过测试?

0 个答案:

没有答案