Browse Source

Adjust unit tests.

pull/15/head
Daniel Grunwald 15 years ago
parent
commit
c2a8bcf1c3
  1. 3
      src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs
  2. 3
      src/AddIns/BackendBindings/Scripting/Test/Utils/MockDebugger.cs

3
src/AddIns/Analysis/UnitTesting/Test/Utils/MockDebugger.cs

@ -3,6 +3,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using ICSharpCode.NRefactory;
using ICSharpCode.SharpDevelop.Debugging; using ICSharpCode.SharpDevelop.Debugging;
using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Project;
@ -148,7 +149,7 @@ namespace UnitTesting.Tests.Utils
throw new NotImplementedException(); throw new NotImplementedException();
} }
public object GetTooltipControl(string variable) public object GetTooltipControl(Location logicalPosition, string variable)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }

3
src/AddIns/BackendBindings/Scripting/Test/Utils/MockDebugger.cs

@ -3,6 +3,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using ICSharpCode.NRefactory;
using ICSharpCode.SharpDevelop.Debugging; using ICSharpCode.SharpDevelop.Debugging;
using ICSharpCode.SharpDevelop.Project; using ICSharpCode.SharpDevelop.Project;
@ -122,7 +123,7 @@ namespace ICSharpCode.Scripting.Tests.Utils
throw new NotImplementedException(); throw new NotImplementedException();
} }
public object GetTooltipControl(string variable) public object GetTooltipControl(Location logicalPosition, string variable)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }

Loading…
Cancel
Save