共用方式為


MSTEST0031:System.ComponentModel.DescriptionAttribute 對測試方法沒有任何影響

屬性
規則識別碼 MSTEST0031
職稱 System.ComponentModel.DescriptionAttribute 對測試方法沒有任何影響。
類別 使用方式
修正程式是中斷或非中斷 不中斷
預設為啟用 Yes
預設嚴重性 資訊
在版本中引進 3.5.0
是否有程式碼修正 No

原因

'System.ComponentModel.DescriptionAttribute' 在測試的內容中沒有效果。

檔案描述

'System.ComponentModel.DescriptionAttribute' 在測試內容中沒有任何效果,因此使用者可能需要改用 'Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute'。

如何修正違規

請將 System.ComponentModel.DescriptionAttribute 移除或取代為 Microsoft.VisualStudio.TestTools.UnitTesting.DescriptionAttribute

隱藏警告的時機

不建議隱藏診斷,因為 System.ComponentModel.DescriptionAttribute 在測試內容中沒有任何效果。

隱藏警告

如果您只想要隱藏單一違規,請將預處理器指示詞新增至原始程式檔以停用,然後重新啟用規則。

#pragma warning disable MSTEST0031
// The code that's violating the rule is on this line.
#pragma warning restore MSTEST0031

若要停用檔案、資料夾或項目的規則,請將其嚴重性設定為 組態檔中的 none

[*.{cs,vb}]
dotnet_diagnostic.MSTEST0031.severity = none

如需詳細資訊,請參閱 如何抑制程式代碼分析警告。