NUnit CollectionAssert 的命名空间是什么?
我有以下内容:
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using Selenium;
using System.Collections.Generic;
但仍然无法获取我在 CollectionAssert (NUnit 2.4)
打印屏幕:
I have the following:
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using Selenium;
using System.Collections.Generic;
but still can not get CollectionAssert
which I found on CollectionAssert (NUnit 2.4)
The printscreen:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它肯定位于
nunit.framework
程序集中的NUnit.Framework
命名空间中 - 我刚刚下载了 NUnit 2.5.10 进行检查。我建议您检查您真正引用的
nunit.framework
版本,并在 Reflector 中打开它以检查CollectionAssert
是否存在。It's definitely in the
NUnit.Framework
namespace in thenunit.framework
assembly - I've just downloaded NUnit 2.5.10 to check.I suggest you check which version of
nunit.framework
you're really referencing, and open it up in Reflector to check for the existence ofCollectionAssert
.