BootstrapComponents.Tests.Components.Forms.FormTests.NullHtmlHelperForTestingShouldntBreak C# (CSharp) Méthode

NullHtmlHelperForTestingShouldntBreak() private méthode

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

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