我正在尝试使用ValueSourceAttribute
进行测试。
这是一个例子
[Test]
public async Task TestDocumentsDifferentFormats(
[ValueSource(nameof(Formats))] string format,
[ValueSource(nameof(Documents))] IDocument document)
{
有趣的是,Formats
列表(第一个参数)可以完美运行,但是即使它以相同的方式定义,它也无法解析第二个参数。
这是我定义文档静态列表的方式
public class DocumentFactory
{
public static readonly List<IDocument> Documents=
new List<IDocument>
{
// Init documents
};
}
但是当我尝试运行测试时,它会抛出错误。
The sourceName specified on a ValueSourceAttribute must refer to a non null static field, property or method.
什么会导致此问题?我将不胜感激任何帮助。
如果在另一个类中定义了值,则应提供其类型作为属性的参数
[Test]
public void TestOne(
[ValueSource(nameof(Formats))] string format,
[ValueSource(typeof(DocumentFactory), nameof(DocumentFactory.Documents))] IDocument document)
{
document.Should().NotBeNull();
}
如果不提供类型,NUnit 将使用当前类的类型作为默认类型,这就是Formats
工作的原因。