gpt4 book ai didi

c# - xUnit.net:未运行测试类构造函数?

转载 作者:太空狗 更新时间:2023-10-29 20:33:11 29 4
gpt4 key购买 nike

我正在尝试在我的 xUnit.net 测试类之一中运行一些设置代码,但尽管测试正在运行,但构造函数似乎并未运行。

这是我的一些代码:

public abstract class LeaseTests<T>
{
private static readonly object s_lock = new object();
private static IEnumerable<T> s_sampleValues = Array.Empty<T>();

private static void AssignToSampleValues(Func<IEnumerable<T>, IEnumerable<T>> func)
{
lock (s_lock)
{
s_sampleValues = func(s_sampleValues);
}
}

public LeaseTests()
{
AssignToSampleValues(s => s.Concat(CreateSampleValues()));
}

public static IEnumerable<object[]> SampleValues()
{
foreach (T value in s_sampleValues)
{
yield return new object[] { value };
}
}

protected abstract IEnumerable<T> CreateSampleValues();
}

// Specialize the test class for different types
public class IntLeaseTests : LeaseTests<int>
{
protected override IEnumerable<int> CreateSampleValues()
{
yield return 3;
yield return 0;
yield return int.MaxValue;
yield return int.MinValue;
}
}

我将 SampleValues 用作 MemberData,因此我可以在这样的测试中使用它们

[Theory]
[MemberData(nameof(SampleValues))]
public void ItemShouldBeSameAsPassedInFromConstructor(T value)
{
var lease = CreateLease(value);
Assert.Equal(value, lease.Item);
}

但是,对于所有使用 SampleValues 的方法,我总是收到一条错误消息,提示“[method] 未找到任何数据”。在我进一步调查之后,我发现 LeaseTests 构造函数甚至都没有运行;当我在对 AssignToSampleValues 的调用上设置断点时,它没有被命中。

为什么会发生这种情况,我该如何解决?谢谢。

最佳答案

构造函数未运行,因为在创建特定测试类的实例之前评估了 MemberData。我不确定这是否能满足您的要求,但您可以执行以下操作:

定义ISampleDataProvider接口(interface)

public interface ISampleDataProvider<T>
{
IEnumerable<int> CreateSampleValues();
}

添加特定于类型的实现:

public class IntSampleDataProvider : ISampleDataProvider<int>
{
public IEnumerable<int> CreateSampleValues()
{
yield return 3;
yield return 0;
yield return int.MaxValue;
yield return int.MinValue;
}
}

SampleValues 方法中解析和使用数据提供者

public abstract class LeaseTests<T>
{
public static IEnumerable<object[]> SampleValues()
{
var targetType = typeof (ISampleDataProvider<>).MakeGenericType(typeof (T));

var sampleDataProviderType = Assembly.GetAssembly(typeof (ISampleDataProvider<>))
.GetTypes()
.FirstOrDefault(t => t.IsClass && targetType.IsAssignableFrom(t));

if (sampleDataProviderType == null)
{
throw new NotSupportedException();
}

var sampleDataProvider = (ISampleDataProvider<T>)Activator.CreateInstance(sampleDataProviderType);
return sampleDataProvider.CreateSampleValues().Select(value => new object[] {value});
}
...

关于c# - xUnit.net:未运行测试类构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37900486/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com