校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > mstest實現類似單元測試nunit中assert.throws功能

mstest實現類似單元測試nunit中assert.throws功能

熱門標簽:400電話辦理信任翰諾科技 怎樣給陜西地圖標注顏色 ai電銷機器人對貸款有幫助嗎 云狐人工智能電話機器人 廣州銷售外呼系統定制 宿遷智能外呼系統排名 電銷機器人 數據 福州人工智能電銷機器人加盟 地圖標注多少錢一張

我們做單元測試NUnit中,有一個斷言Assert.Throws很好用,但當我們使用MsTest時你需要這樣寫:

復制代碼 代碼如下:

[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void WriteToTextFile()
{
PDFUtility.WriteToTextFile("D:\\ACA.pdf", null);
}

現在讓我們來擴展一下也實現類似成功能,增加一個類,代碼如下:

復制代碼 代碼如下:

/// summary>
/// Useful assertions for actions that are expected to throw an exception.
/// /summary>
public static class ExceptionAssert
{
/// summary>
/// Executes an exception, expecting an exception to be thrown.
/// Like Assert.Throws in NUnit.
/// /summary>
/// param name="action">The action to execute/param>
/// returns>The exception thrown by the action/returns>
public static Exception Throws(Action action)
{
return Throws(action, null);
}

/// summary>
/// Executes an exception, expecting an exception to be thrown.
/// Like Assert.Throws in NUnit.
/// /summary>
/// param name="action">The action to execute/param>
/// param name="message">The error message if the expected exception is not thrown/param>
/// returns>The exception thrown by the action/returns>
public static Exception Throws(Action action, string message)
{
try
{
action();
}
catch (Exception ex)
{
// The action method has thrown the expected exception.
// Return the exception, in case the unit test wants to perform further assertions on it.
return ex;
}

// If we end up here, the expected exception was not thrown. Fail!
throw new AssertFailedException(message ?? "Expected exception was not thrown.");
}

/// summary>
/// Executes an exception, expecting an exception of a specific type to be thrown.
/// Like Assert.Throws in NUnit.
/// /summary>
/// param name="action">The action to execute/param>
/// returns>The exception thrown by the action/returns>
public static T ThrowsT>(Action action) where T : Exception
{
return ThrowsT>(action, null);
}

/// summary>
/// Executes an exception, expecting an exception of a specific type to be thrown.
/// Like Assert.Throws in NUnit.
/// /summary>
/// param name="action">The action to execute/param>
/// param name="message">The error message if the expected exception is not thrown/param>
/// returns>The exception thrown by the action/returns>
public static T ThrowsT>(Action action, string message) where T : Exception
{
try
{
action();
}
catch (Exception ex)
{
T actual = ex as T;
if (actual == null)
{
throw new AssertFailedException(message ?? String.Format("Expected exception of type {0} not thrown. Actual exception type was {1}.", typeof(T), ex.GetType()));
}

// The action method has thrown the expected exception of type 'T'.
// Return the exception, in case the unit test wants to perform further assertions on it.
return actual;
}

// If we end up here, the expected exception of type 'T' was not thrown. Fail!
throw new AssertFailedException(message ?? String.Format("Expected exception of type {0} not thrown.", typeof(T)));
}
}

好了,現在我們在MsTest中可以這樣了,看下面代碼:
復制代碼 代碼如下:

[TestMethod]
 public void WriteToTextFile2()
{
//Implement Assert.Throws in MSTest
ExceptionAssert.ThrowsArgumentNullException>(()=> PDFUtility.WriteToTextFile("D:\\ACA.pdf", null)
 ,"Output file path should not be null");
 }
 

標簽:焦作 大興安嶺 綿陽 宜春 延安 新疆 黃南 曲靖

巨人網絡通訊聲明:本文標題《mstest實現類似單元測試nunit中assert.throws功能》,本文關鍵詞  mstest,實現,類似,單元,測試,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《mstest實現類似單元測試nunit中assert.throws功能》相關的同類信息!
  • 本頁收集關于mstest實現類似單元測試nunit中assert.throws功能的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 西藏| 玉林市| 黎平县| 五莲县| 北辰区| 怀化市| 拉孜县| 荥阳市| 阿勒泰市| 乌审旗| 阿合奇县| 西乌珠穆沁旗| 美姑县| 康保县| 台安县| 玛曲县| 嘉定区| 横峰县| 尚志市| 农安县| 得荣县| 专栏| 婺源县| 天全县| 嘉定区| 本溪市| 江山市| 鸡东县| 江源县| 乌兰县| 清涧县| 中西区| 佳木斯市| 来宾市| 康乐县| 虎林市| 沙田区| 松原市| 南乐县| 印江| 吉木萨尔县|