创建一个 NUnit 约束,表示“{collection} 不包含 {item}”
我正在努力对枚举中缺少特定项目做出断言。具体来说,我的测试如下所示:
// Take an item from a queue of scheduled items...
ItemQueue pendingQueue = schedule.PendingItems; // PendingItems is an IEnumerable<int>
int item = pendingQueue.FirstItem;
// ...process the item...
processor.DoSomethingWith(item);
// ...and the schedule must not contain the item anymore:
Assert.That(schedule.PendingItems, Does.Not.Contain(item));
当然,Does.Not.Contain 不是有效的 nUnit 约束。我怎样才能用有效的流畅语法来表达它?
I'm struggling to make an assertion about the absence of a particular item in an enumeration. Specifically, this is what my test looks like:
// Take an item from a queue of scheduled items...
ItemQueue pendingQueue = schedule.PendingItems; // PendingItems is an IEnumerable<int>
int item = pendingQueue.FirstItem;
// ...process the item...
processor.DoSomethingWith(item);
// ...and the schedule must not contain the item anymore:
Assert.That(schedule.PendingItems, Does.Not.Contain(item));
Of course, Does.Not.Contain is not a valid nUnit constraint. How can I express it in a valid fluent syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅适用于 NUnit 2.4 / 2.5
Only with NUnit 2.4 / 2.5
使用 CollectionAssert 方法:
Use the CollectionAssert method:
如果您使用的是 NUnit 2.4 / 2.5,您可以查看集合约束。
If you are using NUnit 2.4 / 2.5 you may checkout the collection constraints.