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:
authorDavid Karlaš <david.karlas@xamarin.com>2015-01-19 12:19:50 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-01-20 14:31:13 +0300
commitdec598c45a948aee38441201f5b9fc1b1d9efe27 (patch)
tree8952fc06b6479f58a38cc1be2d0d8086f3979981 /main/src/addins/MonoDevelop.Debugger
parent5504f05fe47b47c4e846734ec4ced536ee5e6286 (diff)
[DebuggerTests] Using Instruction stepping instead Line stepping
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/DebugTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/DebugTests.cs b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/DebugTests.cs
index 283f07c17c..fc0d7bd66b 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/DebugTests.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/DebugTests.cs
@@ -315,7 +315,7 @@ namespace MonoDevelop.Debugger.Tests
public void StepIn (string guid, int offset = 0, string statement = null)
{
targetStoppedEvent.Reset ();
- Session.StepLine ();
+ Session.StepInstruction ();
CheckPosition (guid, offset, statement);
}
@@ -327,7 +327,7 @@ namespace MonoDevelop.Debugger.Tests
public void StepOver (string guid, int offset = 0, string statement = null)
{
targetStoppedEvent.Reset ();
- Session.NextLine ();
+ Session.NextInstruction ();
CheckPosition (guid, offset, statement);
}