public void Assigning_DefaultComponentAttributeType_To_Null_Throws_Exception() { AutoBindStrategy strategy = new AutoBindStrategy(); strategy.DefaultComponentAttributeType = null; }
public void Assigning_DefaultComponentAttributeType_Where_Type_Does_Not_Implement_IDefaultComponentAttribute_Throws_Exception() { AutoBindStrategy strategy = new AutoBindStrategy(); strategy.DefaultComponentAttributeType = typeof(CustomResolveAttribute); }
public void Assigning_DefaultComponentAttributeType_To_Non_Attribute_Type_Throws_Exception() { AutoBindStrategy strategy = new AutoBindStrategy(); strategy.DefaultComponentAttributeType = typeof(ConfigurationTests); }