public void Account_Method() { Assert.Throws<ArgumentNullException>(() => new SoundCloudProfileIconWidget().Account(null)); Assert.Throws<ArgumentException>(() => new SoundCloudProfileIconWidget().Account(string.Empty)); var widget = new SoundCloudProfileIconWidget(); Assert.Null(widget.Account()); Assert.True(ReferenceEquals(widget.Account("account"), widget)); Assert.Equal("account", widget.Account()); }
public void Account_Method() { Assert.Throws <ArgumentNullException>(() => new SoundCloudProfileIconWidget().Account(null)); Assert.Throws <ArgumentException>(() => new SoundCloudProfileIconWidget().Account(string.Empty)); var widget = new SoundCloudProfileIconWidget(); Assert.Null(widget.Account()); Assert.True(ReferenceEquals(widget.Account("account"), widget)); Assert.Equal("account", widget.Account()); }
public void Constructors() { var widget = new SoundCloudProfileIconWidget(); Assert.Null(widget.Account()); Assert.Equal("orange_white", widget.Color()); Assert.Equal((short) SoundCloudProfileIconSize.Size32, widget.Size()); }
public void Constructors() { var widget = new SoundCloudProfileIconWidget(); Assert.Null(widget.Account()); Assert.Equal("orange_white", widget.Color()); Assert.Equal((short)SoundCloudProfileIconSize.Size32, widget.Size()); }