兩種建立單元測試的方法
方法 1
- 轉到單元測試專案中的單元測試類
- 寫一個單元測試
[Testclass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
//Arrange
ApplicationToTest.Calc ClassCalc = new ApplicationToTest.Calc();
int expectedResult = 5;
//Act
int result = ClassCalc.Sum(2,3);
//Assert
Assert.AreEqual(expectedResult, result);
}
}
方法 2
- 去你想測試的方法
- 右鍵單擊方法 - >建立單元測試
- (圖 4)
- 將測試框架設定為 MSTest
- 將 Test Project 設定為單元測試專案的名稱
- 將 Output File 設定為單元測試類的名稱
- 將測試方法的程式碼設定為你喜歡的列出的選項之一
- 其他選項可以編輯,但沒有必要
(提示:如果你還沒有進行單元測試專案,你仍然可以使用這個選項。只需將 Test Project 設定為和 Output File to。它將建立單元測試專案,它將把專案的引用新增到單元測試專案)
- (圖 5)
- 正如你在下面看到的那樣,它建立了單元測試的基礎供你填寫
- (圖 6)