SetProperty() public méthode

Sets the property.
public SetProperty ( string name, string value, Sitecore.Data.DataProviders.CallContext context ) : bool
name string The property name.
value string The property value.
context Sitecore.Data.DataProviders.CallContext The context. Ignored.
Résultat bool
 public void ShouldResetPropertyAndReturnTheLatestValue(FakeDataProvider sut, string name, string value1, string value2, CallContext context)
 {
   sut.SetProperty(name, value1, context);
   sut.SetProperty(name, value2, context);
   sut.GetProperty(name, context).Should().Be(value2);
 }
 public void ShouldThrowIfNameIsNullOnSetProperty(FakeDataProvider sut)
 {
   Action action = () => sut.SetProperty(null, null, null);
   action.ShouldThrow<ArgumentNullException>().WithMessage("*name");
 }
 public void ShouldGetProperty(FakeDataProvider sut, string name, string value, CallContext context)
 {
   sut.SetProperty(name, value, context);
   sut.GetProperty(name, context).Should().Be(value);
 }
 public void ShouldSetPropertyAndReturnTrue(FakeDataProvider sut, string name, string value, CallContext context)
 {
   sut.SetProperty(name, value, context).Should().BeTrue();
 }