StoryTeller.Testing.UserInterface.Exploring.TreeNodeSpecification.TreeNodeSpecification C# (CSharp) Method

TreeNodeSpecification() public method

public TreeNodeSpecification ( string text ) : System
text string
return System
        public TreeNodeSpecification(string text)
        {
            var reader = new StringReader(text);
            string lineText;
            while ((lineText = reader.ReadLine()) != null)
            {
                if (lineText.Trim() == string.Empty) continue;

                addToken(lineText.Trim());
            }
        }