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

ButtonWithCategory() private method

private ButtonWithCategory ( ) : void
return void
        public void ButtonWithCategory()
        {
            var button = new Button("Info Button", new ButtonSettings { Category = Category.Info });
            Assert.AreEqual("<button class=\"btn btn-info\">Info Button</button>", button.ToHtmlString());
        }