Exemplo n.º 1
0
        public void WhenAppendIndentation_IndentationCharactersAccordingToIndentationLevelsAreAppended()
        {
            _sb.IncreaseIndentation();
            _sb.IncreaseIndentation();

            _sb.AppendIndentation();

            var script = _sb.ToString();

            Assert.Equal("\t\t", script);
        }