我有以下内容:
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)
上找到的CollectionAssert
打印屏幕:
答案 0 :(得分:4)
它绝对位于NUnit.Framework
程序集中的nunit.framework
命名空间中 - 我刚刚下载了NUnit 2.5.10进行检查。
我建议你查看你真正引用的nunit.framework
版本,然后在Reflector中打开它以检查是否存在CollectionAssert
。