Browse Source

Running unit tests will now clear the build output window before building the projects ready for the test run.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2147 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
b1597429a4
  1. 7
      src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs

7
src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs

@ -192,8 +192,13 @@ namespace ICSharpCode.UnitTesting @@ -192,8 +192,13 @@ namespace ICSharpCode.UnitTesting
/// </summary>
void BeforeRun()
{
TaskService.BuildMessageViewCategory.ClearText();
TaskService.InUpdate = true;
TaskService.ClearExceptCommentTasks();
TestRunnerCategory.ClearText();
TaskService.InUpdate = false;
TestRunnerCategory.ClearText();
ShowUnitTestsPad();
ShowOutputPad();

Loading…
Cancel
Save