BootstrapComponents.Tests.Components.Buttons.ButtonTests.ButtonWithCategory C# (CSharp) 메소드

ButtonWithCategory() 개인적인 메소드

private ButtonWithCategory ( ) : void
리턴 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());
        }