BootstrapComponents.Tests.Components.Buttons.ButtonTests.ButtonWithSize C# (CSharp) Method

ButtonWithSize() private method

private ButtonWithSize ( ) : void
return void
        public void ButtonWithSize()
        {
            var button = new Button("Extra Small Button", new ButtonSettings { Size = Size.Xs });
            Assert.AreEqual("<button class=\"btn btn-default btn-xs\">Extra Small Button</button>", button.ToHtmlString());
        }