单元测试描述问题
Visual Studio 中有一个关于单元测试的描述条目。创建测试描述后是否可以修改?
There is a description entry for Unit Tests in Visual Studio. Is it possible to modify a test description after creation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
测试视图中的“描述”列是只读的,但如果您选择一个测试并查看“属性”窗口,您会发现“描述”属性是可编辑的。这将为测试添加一个
[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.