Skip to content

Commit 714cfab

Browse files
committed
Namespace changed to Mono.Debugging.Tests
1 parent 1913ef2 commit 714cfab

12 files changed

+22
-22
lines changed

UnitTests/Mono.Debugging.Tests/Shared/AdvancedEvaluationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
using System;
2727
using NUnit.Framework;
2828

29-
namespace MonoDevelop.Debugger.Tests
29+
namespace Mono.Debugging.Tests
3030
{
3131
namespace Soft
3232
{

UnitTests/Mono.Debugging.Tests/Shared/BreakpointsAndSteppingTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
using System.Collections.Generic;
3030
using Mono.Debugging.Soft;
3131

32-
namespace MonoDevelop.Debugger.Tests
32+
namespace Mono.Debugging.Tests
3333
{
3434
[TestFixture]
3535
public abstract class BreakpointsAndSteppingTests:DebugTests
@@ -912,7 +912,7 @@ public void CatchpointIgnoreExceptionsInNonUserCodeTest ()
912912
Assert.AreEqual ("3913936e-3f89-4f07-a863-7275aaaa5fc9", Session.ActiveThread.Backtrace.GetFrame (0).GetException ().Message);
913913
}
914914

915-
[Test]
915+
[Test]
916916
public void ConditionalBreakpoints ()
917917
{
918918
ObjectValue val;
@@ -1058,7 +1058,7 @@ public void HitCountBreakpoints ()
10581058
Assert.AreEqual ("1", val.Value);
10591059
}
10601060

1061-
[Test]
1061+
[Test]
10621062
public void Bug13401 ()
10631063
{
10641064
InitializeTest ();
@@ -1151,7 +1151,7 @@ public void Bug21410 ()
11511151
StartTest ("TestBug21410");
11521152
CheckPosition ("5e6663d0-9088-40ad-914d-0fcc05b2d0d5");
11531153
StepOver ("5e6663d0-9088-40ad-914d-0fcc05b2d0d5", 1);
1154-
}
1154+
}
11551155
}
11561156
}
11571157

UnitTests/Mono.Debugging.Tests/Shared/CorBreakpointsAndSteppingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
using System;
2727
using NUnit.Framework;
2828

29-
namespace MonoDevelop.Debugger.Tests.Win32
29+
namespace Mono.Debugging.Tests.Win32
3030
{
3131
[TestFixture]
3232
[Platform (Include = "Win")]

UnitTests/Mono.Debugging.Tests/Shared/CorEvaluationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
using NUnit.Framework;
2828

29-
namespace MonoDevelop.Debugger.Tests.Win32
29+
namespace Mono.Debugging.Tests.Win32
3030
{
3131
[TestFixture]
3232
[Platform (Include = "Win")]

UnitTests/Mono.Debugging.Tests/Shared/CorStackFrameTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// THE SOFTWARE.
2626
using NUnit.Framework;
2727

28-
namespace MonoDevelop.Debugger.Tests.Win32
28+
namespace Mono.Debugging.Tests.Win32
2929
{
3030
[TestFixture]
3131
[Platform (Include = "Win")]

UnitTests/Mono.Debugging.Tests/Shared/DebugTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
using NUnit.Framework;
3737

38-
namespace MonoDevelop.Debugger.Tests
38+
namespace Mono.Debugging.Tests
3939
{
4040
[TestFixture]
4141
public abstract partial class DebugTests

UnitTests/Mono.Debugging.Tests/Shared/EvaluationTests.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
using NUnit.Framework;
3131
using Mono.Debugging.Soft;
3232

33-
namespace MonoDevelop.Debugger.Tests
33+
namespace Mono.Debugging.Tests
3434
{
3535
[TestFixture]
3636
public abstract class EvaluationTests: DebugTests
@@ -494,7 +494,7 @@ public void MethodInvoke ()
494494
val = val.Sync ();
495495
}
496496
Assert.AreEqual ("\"AbstractImplementation\"", val.Value);
497-
Assert.AreEqual ("string", val.TypeName);
497+
Assert.AreEqual ("string", val.TypeName);
498498

499499
IgnoreCorDebugger("TODO: CorDebugger support explicit interfaces");
500500

@@ -942,7 +942,7 @@ public void MemberReference ()
942942
val = val.Sync ();
943943
}
944944
Assert.AreEqual ("3", val.Value);
945-
Assert.AreEqual ("int", val.TypeName);
945+
Assert.AreEqual ("int", val.TypeName);
946946

947947
IgnoreCorDebugger("TODO: CorDebugger support explicit interfaces");
948948

@@ -2179,7 +2179,7 @@ public void Inheriting ()
21792179
Assert.AreEqual ("int", val.TypeName);
21802180

21812181
val = Eval("base.TestMethodBase ()");
2182-
if (!AllowTargetInvokes)
2182+
if (!AllowTargetInvokes)
21832183
{
21842184
var options = Session.Options.EvaluationOptions.Clone();
21852185
options.AllowTargetInvoke = true;
@@ -2194,7 +2194,7 @@ public void Inheriting ()
21942194
IgnoreCorDebugger("Not working on CorDebugger");
21952195

21962196
val = Eval("b.PropNoVirt2");
2197-
if (!AllowTargetInvokes)
2197+
if (!AllowTargetInvokes)
21982198
{
21992199
var options = Session.Options.EvaluationOptions.Clone();
22002200
options.AllowTargetInvoke = true;
@@ -2208,10 +2208,10 @@ public void Inheriting ()
22082208

22092209
val = Eval("b.IntField");
22102210
Assert.AreEqual("1", val.Value);
2211-
Assert.AreEqual("int", val.TypeName);
2212-
2211+
Assert.AreEqual("int", val.TypeName);
2212+
22132213
val = Eval("b.PropNoVirt1");
2214-
if (!AllowTargetInvokes && soft == null)
2214+
if (!AllowTargetInvokes && soft == null)
22152215
{
22162216
var options = Session.Options.EvaluationOptions.Clone();
22172217
options.AllowTargetInvoke = true;

UnitTests/Mono.Debugging.Tests/Shared/SdbBreakpointsAndSteppingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
using System;
2727
using NUnit.Framework;
2828

29-
namespace MonoDevelop.Debugger.Tests.Soft
29+
namespace Mono.Debugging.Tests.Soft
3030
{
3131
[TestFixture]
3232
[Ignore("Sdb has many failings until resolved ignore all")]

UnitTests/Mono.Debugging.Tests/Shared/SdbEvaluationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
using NUnit.Framework;
2828

29-
namespace MonoDevelop.Debugger.Tests.Soft
29+
namespace Mono.Debugging.Tests.Soft
3030
{
3131
[TestFixture]
3232
public class SdbEvaluationAllowTargetInvokesTests: EvaluationTests

UnitTests/Mono.Debugging.Tests/Shared/SdbStackFrameTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
using NUnit.Framework;
2828

29-
namespace MonoDevelop.Debugger.Tests.Soft
29+
namespace Mono.Debugging.Tests.Soft
3030
{
3131
[TestFixture]
3232
public class SdbStackFrameAllowTargetInvokesTests : StackFrameTests

0 commit comments

Comments
 (0)