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-08-24 22:57:12 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-08-24 23:27:31 +0300
commitc984734143ebe4cd6b55c12d290cffdfd0db0b5f (patch)
tree71c040d333adc22d0746a381b803908f02c98f51 /main/tests/UserInterfaceTests/IdeQuery.cs
parent1f15d81d306831a3bbd059dae1871d40ea202701 (diff)
[UITest] Close Xamarin Update if opened
Diffstat (limited to 'main/tests/UserInterfaceTests/IdeQuery.cs')
-rw-r--r--main/tests/UserInterfaceTests/IdeQuery.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/tests/UserInterfaceTests/IdeQuery.cs b/main/tests/UserInterfaceTests/IdeQuery.cs
index c47068d6ed..ba1db2f697 100644
--- a/main/tests/UserInterfaceTests/IdeQuery.cs
+++ b/main/tests/UserInterfaceTests/IdeQuery.cs
@@ -36,6 +36,7 @@ namespace UserInterfaceTests
readonly static Func<AppQuery, AppQuery> _editRemoteDialog = c => c.Window ().Marked ("MonoDevelop.VersionControl.Git.EditRemoteDialog");
readonly static Func<AppQuery, AppQuery> _editBranchDialog = c => c.Window ().Marked ("MonoDevelop.VersionControl.Git.EditBranchDialog");
readonly static Func<AppQuery, AppQuery> _textArea = c => c.Window ().Children ().Marked ("Mono.TextEditor.TextArea");
+ readonly static Func<AppQuery, AppQuery> _xamarinUpdate = c => c.Marked ("Xamarin Update");
public static Func<AppQuery, AppQuery> DefaultWorkbench
{
@@ -78,6 +79,13 @@ namespace UserInterfaceTests
return _textArea;
}
}
+
+ public static Func<AppQuery, AppQuery> XamarinUpdate
+ {
+ get {
+ return _xamarinUpdate;
+ }
+ }
}
}