public void CustomFactoryWithIncompatibleTypeThrows() { CustomFactoryAttribute attribute = new CustomFactoryAttribute(typeof(object)); }
public void CustomFactoryWithNullTypeThrows() { CustomFactoryAttribute attribute = new CustomFactoryAttribute(null); }
public void CustomFactoryWithCompatibleTypeWorks() { CustomFactoryAttribute attribute = new CustomFactoryAttribute(typeof(MockImplementor)); }