예제 #1
0
        public void OnBeforeRunTestsClearsCodeCoverageMessageViewTextWithSafeAsyncCall()
        {
            MessageViewCategory view = new MessageViewCategory("Test");

            view.AppendText("abc");
            command.CodeCoverageMessageViewCategory = view;
            command.CallOnBeforeRunTests();

            Assert.AreEqual(String.Empty, view.Text);
        }
예제 #2
0
 public static void AppendOutputText(string text)
 {
     EnsureProfileCategory();
     profileCategory.AppendText(StringParser.Parse(text));
 }
예제 #3
0
 public static void PrintDebugMessage(string msg)
 {
     EnsureDebugCategory();
     debugCategory.AppendText(msg);
 }