public static void Ctor_Refresh(RefreshProperties refresh, bool expectedIsDefaultAttribute) { var attribute = new RefreshPropertiesAttribute(refresh); Assert.Equal(refresh, attribute.RefreshProperties); Assert.Equal(expectedIsDefaultAttribute, attribute.IsDefaultAttribute()); }
public RefreshPropertiesAttribute(RefreshProperties refreshProperties) { }
/// <summary> /// </summary> /// <internalonly/> public RefreshPropertiesAttribute(RefreshProperties refresh) { RefreshProperties = refresh; }
public RefreshPropertiesAttribute(RefreshProperties refresh) { throw new NotImplementedException(); }
// Constructor. public RefreshPropertiesAttribute(RefreshProperties refresh) { this.refresh = refresh; }
public RefreshPropertiesAttribute(RefreshProperties refresh) => RefreshProperties = refresh;
public RefreshPropertiesAttribute(RefreshProperties e) { }
public void DefaultProperties_GetRefreshProperties_ReturnsExpected(RefreshPropertiesAttribute attribute, RefreshProperties expectedRefreshProperties, bool expectedIsDefaultAttribute) { Assert.Equal(expectedRefreshProperties, attribute.RefreshProperties); Assert.Equal(expectedIsDefaultAttribute, attribute.IsDefaultAttribute()); }
public RefreshPropertiesAttribute(RefreshProperties prop) { }
public void NameTests(RefreshPropertiesAttribute attribute, RefreshProperties refreshProperties) { Assert.Equal(refreshProperties, attribute.RefreshProperties); }
public void GetRefreshProperties(RefreshProperties value) { var attribute = new RefreshPropertiesAttribute(value); Assert.Equal(value, attribute.RefreshProperties); }