public void it_should_output_a_non_html_formatted_text_representation()
        {
            _formTag.AddChild(new LabelTag(new StringNode("Hi, I'm A Label.")));
            _formTag.AddChild(new LabelTag(new StringNode("You're not the only one, I'm a Label too!")));

            Assert.AreEqual("Hi, I'm A Label.You're not the only one, I'm a Label too!", _formTag.ToPlainTextString());
        }