예제 #1
0
 public void Assigning_DefaultComponentAttributeType_To_Null_Throws_Exception()
 {
     AutoBindStrategy strategy = new AutoBindStrategy();
     strategy.DefaultComponentAttributeType = null;
 }
예제 #2
0
 public void Assigning_DefaultComponentAttributeType_Where_Type_Does_Not_Implement_IDefaultComponentAttribute_Throws_Exception()
 {
     AutoBindStrategy strategy = new AutoBindStrategy();
     strategy.DefaultComponentAttributeType = typeof(CustomResolveAttribute);
 }
예제 #3
0
 public void Assigning_DefaultComponentAttributeType_To_Non_Attribute_Type_Throws_Exception()
 {
     AutoBindStrategy strategy = new AutoBindStrategy();
     strategy.DefaultComponentAttributeType = typeof(ConfigurationTests);
 }