ChangeTemplate() public méthode

public ChangeTemplate ( ItemDefinition itemDefinition, TemplateChangeList changes, Sitecore.Data.DataProviders.CallContext context ) : bool
itemDefinition ItemDefinition
changes TemplateChangeList
context Sitecore.Data.DataProviders.CallContext
Résultat bool
 public void ChangeTemplateThrowsIfTemplateChangeListIsNull(FakeDataProvider sut, ItemDefinition def)
 {
   Action action = () => sut.ChangeTemplate(def, null, null);
   action.ShouldThrow<ArgumentNullException>();
 }