Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manish.sinha@xamarin.com>2015-10-09 20:37:41 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-10-09 20:37:41 +0300
commitc84b4fa248a3e738d9459e626a9e81346c32241d (patch)
tree584c72f95c9666b72f951f125d1085446897f67c /main/tests
parenta97db6e5c839e5e521d7d1c165a89240ac734c96 (diff)
parentc83b625c20522be57bcc9813ce177c92cc28e6ee (diff)
Merge pull request #1092 from manish/save-all-before-closing
[UITest] Call SaveAll before closing a project to avoid the dialog box
Diffstat (limited to 'main/tests')
-rw-r--r--main/tests/UserInterfaceTests/Ide.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/tests/UserInterfaceTests/Ide.cs b/main/tests/UserInterfaceTests/Ide.cs
index 16841f718e..fbf8f75cef 100644
--- a/main/tests/UserInterfaceTests/Ide.cs
+++ b/main/tests/UserInterfaceTests/Ide.cs
@@ -52,6 +52,7 @@ namespace UserInterfaceTests
public static void CloseAll ()
{
+ Session.ExecuteCommand (FileCommands.SaveAll);
Session.ExecuteCommand (FileCommands.CloseWorkspace);
Session.ExitApp ();
}