From c2a8bcf1c36b4889a8f2ab973d875771ddc6ed55 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Fri, 26 Nov 2010 21:57:24 +0100 Subject: [PATCH] Adjust unit tests. --- src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs | 3 ++- .../BackendBindings/Scripting/Test/Utils/MockDebugger.cs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs b/src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs index ae705d18a3..db71be68f9 100644 --- a/src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs +++ b/src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs @@ -3,6 +3,7 @@ using System; using System.Diagnostics; +using ICSharpCode.NRefactory; using ICSharpCode.SharpDevelop.Debugging; using ICSharpCode.SharpDevelop.Project; @@ -148,7 +149,7 @@ namespace UnitTesting.Tests.Utils throw new NotImplementedException(); } - public object GetTooltipControl(string variable) + public object GetTooltipControl(Location logicalPosition, string variable) { throw new NotImplementedException(); } diff --git a/src/AddIns/BackendBindings/Scripting/Test/Utils/MockDebugger.cs b/src/AddIns/BackendBindings/Scripting/Test/Utils/MockDebugger.cs index bfbf5dce7a..e6e20f5743 100644 --- a/src/AddIns/BackendBindings/Scripting/Test/Utils/MockDebugger.cs +++ b/src/AddIns/BackendBindings/Scripting/Test/Utils/MockDebugger.cs @@ -3,6 +3,7 @@ using System; using System.Diagnostics; +using ICSharpCode.NRefactory; using ICSharpCode.SharpDevelop.Debugging; using ICSharpCode.SharpDevelop.Project; @@ -122,7 +123,7 @@ namespace ICSharpCode.Scripting.Tests.Utils throw new NotImplementedException(); } - public object GetTooltipControl(string variable) + public object GetTooltipControl(Location logicalPosition, string variable) { throw new NotImplementedException(); }