BootstrapComponents.Tests.Components.Forms.FormTests.NullHtmlHelperForTestingShouldntBreak C# (CSharp) Method

NullHtmlHelperForTestingShouldntBreak() private method

private NullHtmlHelperForTestingShouldntBreak ( ) : void
return void
        public void NullHtmlHelperForTestingShouldntBreak()
        {
            var output = new StringBuilder();
            var writer = new StringBuilderWriter(output);
            using (var form = new Form(writer, null))
            {

            }
            Assert.AreEqual("", output.ToString());
        }