public void Ctor_Bool(bool bindable) { var attribute = new SettingsBindableAttribute(bindable); Assert.Equal(bindable, attribute.Bindable); Assert.False(attribute.IsDefaultAttribute()); }
public void No_Get_ReturnsExpected() { SettingsBindableAttribute attribute = SettingsBindableAttribute.No; Assert.Same(attribute, SettingsBindableAttribute.No); Assert.False(attribute.Bindable); Assert.False(attribute.IsDefaultAttribute()); }