class Computer
{ //加法計算
public int sum(int x, int y)
{
return x + y;
}
}
我們可能會類似這樣寫測試程式
void sum_輸入1_1輸出2
{ //arrang
var target =new Computer();
int x =1;
int y =1;
int expected = 2; //act
int actual =target.sum(x,y); //assert //這段意思就是 如果expected等於actual 則表示測試成功,如果不等於就會顯示測試失敗
Assert.AreEqual(expected,actual);
}