BootstrapComponents.Tests.Core.HtmlAttributesTests.AppendAttributesWithSpace C# (CSharp) Method

AppendAttributesWithSpace() private method

private AppendAttributesWithSpace ( ) : void
return void
        public void AppendAttributesWithSpace()
        {
            var attributes = new HtmlAttributes(new { text = "original" });
            attributes["text"] += "replacement";
            Assert.AreEqual("text=\"original replacement\"", attributes.ToString());
        }