BootstrapComponents.Tests.Components.Forms.FormTests.NullHtmlHelperForTestingShouldntBreak C# (CSharp) 메소드

NullHtmlHelperForTestingShouldntBreak() 개인적인 메소드

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

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