作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道在 AutoFixure 中,有没有办法从预定义列表中随机选择?例如,当我使用 fixture.Create
或 fixture.CreateMany
时,它会从预定义列表中随机选择一个对象。我没有从 documentation 中找到任何类似的东西并搜索 Stack Overflow,所以我不确定是否可行。
最佳答案
您可以使用 ElementsBuilder<T>
:
[Fact]
public void Example()
{
var fixture = new Fixture();
fixture.Customizations.Add(
new ElementsBuilder<MyObject>(
new MyObject("foo"),
new MyObject("bar"),
new MyObject("baz")));
var actual = fixture.Create<MyObject>();
Assert.Contains(actual.Name, new[] { "foo", "bar", "baz" });
}
这个测试通过了。
在您的实际代码库中,您应该将该修改打包在 ICustomization
中.
关于c# - AutoFixture,从预定义列表中随机选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47761145/
我是一名优秀的程序员,十分优秀!