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-06-18 03:28:10 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-06-18 22:53:17 +0300
commitcbbacc218758f2ad4ef8efc31141b638e252e771 (patch)
tree5b82ffe54c78964a1160014810326c8b4a5d20cb /main/tests/UserInterfaceTests/Ide.cs
parent9b41cfe37498702df6d3ba4ac4ac4a86c3aa81e2 (diff)
[UITest] Added basic support for Solution Explorer
Diffstat (limited to 'main/tests/UserInterfaceTests/Ide.cs')
-rw-r--r--main/tests/UserInterfaceTests/Ide.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/main/tests/UserInterfaceTests/Ide.cs b/main/tests/UserInterfaceTests/Ide.cs
index 78a8f2ff58..4a7fa2fa76 100644
--- a/main/tests/UserInterfaceTests/Ide.cs
+++ b/main/tests/UserInterfaceTests/Ide.cs
@@ -119,7 +119,13 @@ namespace UserInterfaceTests
public readonly static Action EmptyAction = delegate { };
public readonly static Action WaitForPackageUpdate = delegate {
- WaitForStatusMessage (new [] {"Package updates are available.", "Packages are up to date."}, timeoutInSecs: 360, pollStepInSecs: 5);
+ WaitForStatusMessage (new [] {
+ "Package updates are available.",
+ "Packages are up to date.",
+ "No updates found but warnings were reported.",
+ "Packages successfully updated.",
+ "Packages updated with warnings."},
+ timeoutInSecs: 360, pollStepInSecs: 5);
};
public readonly static Action WaitForSolutionCheckedOut = delegate {