图4-2 描述了这步:
图 4-2: 增加一个 NUnit.framework.dll 引用到工程
第3步.为工程加一个类.
为工程加一个NumbersFixture类。这里是这个例子的代码。
1using System; 2using NUnit.Framework; 3 4namespace NUnitQuickStart 5{ 6 [TestFixture] 7 public class NumersFixture 8 { 9 [Test] 10 public void AddTwoNumbers() 11 { 12 int a=1; 13 int b=2; 14 int sum=a+b; 15 Assert.AreEqual(sum,3); 16 } 17 } 18} 19 |
第4步.建立你的Visual Studio 工程,使用NUnit-Gui测试
从程序->NUnit2.2打开NUnit-gui,加载本本工程编译的程序集.
为了在Visual Studio .NET中自动运行NUnit-Gui,你需要建立NUnit-Gui作为你的启动程序:
在 Solution Explorer里右击你的NunitQuickStart工程。
在弹出菜单中选择属性。
在显示的对话框的左面,点击Configuration Properties夹
选择出现在Configuration Properties夹下的Debugging。
在属性框右边的Start Action部分,选择下拉框的Program作为Debug Mode值。
按Apply按钮
设置NUnit-gui.exe 作为Start Application。,你既可以键入nunit-gui.exe的全路径,也可使用浏览按钮来指向它。
图4-3 帮助描述本步骤:
图 4-3:将NUnit-Gui 作为工程的测试运行器