0
我正在爲加載所有由PluginAttribute
裝飾的類型的某種方法創建單元測試。鼴鼠存根和屬性
而不是手動創建一個存根並用PluginAttribute裝飾它,有沒有辦法在痣產生的存根對象上「注入」一個屬性?
foreach (Type t in types)
{
var attr = Attribute.GetCustomAttribute(t, typeof(PluginAttribute), false) as PluginAttribute;
if (attr != null)
{
_checksLookup.Add(attr.ElementName, t);
}
}
}
是的,這就是我所做的。 – Ian