我在这个问题上找到了
this article,并尝试了以下方法:
public class FailerAttr : Attribute { public FailerAttr(string s) { throw new Exception("I should definitely fail!"); } }
在单元测试项目中,我有以下内容:
using Microsoft.VisualStudio.TestTools.UnitTesting; [TestClass] public class Test { [TestMethod] public void GoFail() { // Make sure attribute will get initialized new Failer(); } private class Failer { [FailerAttr("")] public int Prop { get; set; } } }
当我运行测试时,它会成功.所以,问题是:
>为什么它没有失败?
>从属性中抛出异常真是个坏主意吗?因为我认为我需要.
一些环境信息(以防万一相关):
>单元测试通过ReSharper的单元测试运行器(R#v8.2.0.2160)运行
> Visual studio v11.0.61030.0
解决方法
由于属性是运行时可用的类定义的一部分(在geekspeak中也称为“元数据”),除非程序的某些部分要求,否则CLR不会实例化它们.这是有道理的:为什么要花费cpu周期来寻找无人想要访问的东西?
var attr = Attribute.GetCustomAttribute(typeof(Failer).GetProperty("Prop"),typeof(FailerAttr));
此代码使CLR实例化FailerAttr,从而触发异常.
var allAttributes = Attribute.GetCustomAttributes(typeof(Failer).GetProperty("Prop"));
这也导致例外(demo).