xUnit.net:测试 class 构造函数不是 运行?
xUnit.net: Test class constructors not being run?
我正在尝试 运行 我的 xUnit.net 测试 类 中的一些设置代码,但是尽管测试 运行ning 它没有出现构造函数是。
这是我的一些代码:
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
的方法,我总是收到一条错误消息,提示 "no data was found for [method]"。在我进一步调查之后,我发现 LeaseTests
构造函数甚至不是 运行;当我在对 AssignToSampleValues
的调用上设置断点时,它没有被命中。
为什么会发生这种情况,我该如何解决?谢谢。
构造函数不是 运行,因为 MemberData
在创建特定测试 class 的实例之前被求值。我不确定这是否能满足您的要求,但您可以执行以下操作:
定义ISampleDataProvider
接口
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});
}
...
我正在尝试 运行 我的 xUnit.net 测试 类 中的一些设置代码,但是尽管测试 运行ning 它没有出现构造函数是。
这是我的一些代码:
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
的方法,我总是收到一条错误消息,提示 "no data was found for [method]"。在我进一步调查之后,我发现 LeaseTests
构造函数甚至不是 运行;当我在对 AssignToSampleValues
的调用上设置断点时,它没有被命中。
为什么会发生这种情况,我该如何解决?谢谢。
构造函数不是 运行,因为 MemberData
在创建特定测试 class 的实例之前被求值。我不确定这是否能满足您的要求,但您可以执行以下操作:
定义ISampleDataProvider
接口
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});
}
...