单元测试描述问题

发布于 2024-11-30 10:49:24 字数 51 浏览 3 评论 0原文

Visual Studio 中有一个关于单元测试的描述条目。创建测试描述后是否可以修改?

There is a description entry for Unit Tests in Visual Studio. Is it possible to modify a test description after creation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丿*梦醉红颜 2024-12-07 10:49:24
 [TestMethod]
 [Microsoft.VisualStudio.TestTools.UnitTesting.Description("Test Case Description")]
 public void EnsureTestCaseValid()
 {      
 }
 [TestMethod]
 [Microsoft.VisualStudio.TestTools.UnitTesting.Description("Test Case Description")]
 public void EnsureTestCaseValid()
 {      
 }
神仙妹妹 2024-12-07 10:49:24

测试视图中的“描述”列是只读的,但如果您选择一个测试并查看“属性”窗口,您会发现“描述”属性是可编辑的。这将为测试添加一个 [Description("string")] 属性。

The Description column in the Test View is readonly, but if you select a test and look in the Properties window, you'll find that the Description property is editable. This will add a [Description("string")] attribute to the test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文