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:
authoriain holmes <iain@xamarin.com>2016-01-15 17:17:05 +0300
committeriain holmes <iain@xamarin.com>2016-01-15 17:17:05 +0300
commit25681f41e0d76d44c343498dd346d7e58d8fcc6e (patch)
tree3d4a0fb96aca4b0e61c8dc2f4151f7b6e3858a05 /main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest
parentcea70d807fd207467097b7c10d86a6260a6a6958 (diff)
[AutoTest] Specify Gtk for the namespace of all the types we're looking for
The Window() operation was looking for the type Window. A new MonoDevelop.Components.Window was added and taking precidence over Gtk.Window and breaking the unit tests
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AppQuery.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AppQuery.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AppQuery.cs
index fc08c971db..6cbfbd1600 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AppQuery.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AppQuery.cs
@@ -243,42 +243,42 @@ namespace MonoDevelop.Components.AutoTest
public AppQuery Button ()
{
- return CheckType (typeof(Button), "Button");
+ return CheckType (typeof(Gtk.Button), "Button");
}
public AppQuery Textfield ()
{
- return CheckType (typeof(Entry), "Textfield");
+ return CheckType (typeof(Gtk.Entry), "Textfield");
}
public AppQuery CheckButton ()
{
- return CheckType (typeof(CheckButton), "CheckButton");
+ return CheckType (typeof(Gtk.CheckButton), "CheckButton");
}
public AppQuery RadioButton ()
{
- return CheckType (typeof(RadioButton), "RadioButton");
+ return CheckType (typeof(Gtk.RadioButton), "RadioButton");
}
public AppQuery TreeView ()
{
- return CheckType (typeof(TreeView), "TreeView");
+ return CheckType (typeof(Gtk.TreeView), "TreeView");
}
public AppQuery Window ()
{
- return CheckType (typeof(Window), "Window");
+ return CheckType (typeof(Gtk.Window), "Window");
}
public AppQuery TextView ()
{
- return CheckType (typeof(TextView), "TextView");
+ return CheckType (typeof(Gtk.TextView), "TextView");
}
public AppQuery Notebook ()
{
- return CheckType (typeof(Notebook), "Notebook");
+ return CheckType (typeof(Gtk.Notebook), "Notebook");
}
public AppQuery Text (string text)