Exemplo n.º 1
0
        public void TestLineComments()
        {
            _editor.Text            = "SELECT * FROM SELECTION;\nSELECT * FROM RESPONDENTBUCKET";
            _editor.CaretOffset     = 13;
            _editor.SelectionLength = 35;

            GenericCommandHandler.HandleLineComments(_editor.TextArea, null);

            _editor.Text.ShouldBe("--SELECT * FROM SELECTION;\n--SELECT * FROM RESPONDENTBUCKET");
            _editor.CaretOffset.ShouldBe(52);
            _editor.SelectionLength.ShouldBe(0);
        }