public void CanCheckIfAttributeIsSpecified() { var store = new TestStore(); store.IsSpecified(x => x.IsSomething).ShouldBeFalse(); store.IsSomething = true; store.IsSpecified(x => x.IsSomething).ShouldBeTrue(); }
public void CanCheckIfAttributeIsSpecified() { var store = new TestStore(); store.IsSpecified("IsSomething").ShouldBeFalse(); store.Set("IsSomething", Layer.Defaults, true); store.IsSpecified("IsSomething").ShouldBeTrue(); }