本文介绍了测试如果一个类有一个属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图做一个小测试优先发展,我想验证我的课标有一个属性:
I'm trying to do a little Test-First development, and I'm trying to verify that my classes are marked with an attribute:
[SubControllerActionToViewDataAttribute]
public class ScheduleController : Controller
我如何单元测试这个类分配给它的属性?
How do I unit test that the class has that attribute assigned to it?
推荐答案
检查
Attribute.GetCustomAttribute(typeof(ScheduleController),
typeof(SubControllerActionToViewDataAttribute))
不为空( Assert.IsNotNull
或类似)
(我用这个,而不是 IsDefined
的原因是,大多数时候,我要验证的属性的一些性质太....)
(the reason I use this rather than IsDefined
is that most times I want to validate some properties of the attribute too....)
这篇关于测试如果一个类有一个属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!