发布: 2008-1-21 17:43 | 作者: 网络转载 | 来源: 网络转载 | 查看: 106次 | 进入领测软件测试网论坛讨论
using System;
using NUnit.Framework;
namespace NUnitQuickStart 

{
[TestFixture]
public class NumersFixture 
{
[Test]
public void AddTwoNumbers() 
{
int a=1;
int b=2;
int sum=a+b;
Assert.AreEqual(sum,3);
}
[Test]
public void MultiplyTwoNumbers() 
{