1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
using System;
using NUnit.Framework;
using Mono.Debugger;
using Mono.Debugger.Languages;
using Mono.Debugger.Frontend;
namespace Mono.Debugger.Tests
{
[TestFixture]
public class TestToString : TestSuite
{
public TestToString ()
: base ("TestToString")
{ }
[Test]
[Category("ManagedTypes")]
public void Main ()
{
Process process = Start ();
Assert.IsTrue (process.IsManaged);
Assert.IsTrue (process.MainThread.IsStopped);
Thread thread = process.MainThread;
const int line_main = 80;
const int line_main_2 = 85;
const int line_main_3 = 87;
AssertStopped (thread, "X.Main()", line_main);
int bpt_main_2 = AssertBreakpoint (line_main_2);
AssertExecute ("continue");
AssertHitBreakpoint (thread, bpt_main_2, "X.Main()", line_main_2);
// AssertExecute ("bt");
AssertPrint (thread, "foo.ToString()", "(string) \"Hello World!\"");
AssertExecute ("next");
AssertStopped (thread, "X.Main()", line_main_3);
// AssertExecute ("bt");
AssertExecute ("continue");
AssertTargetExited (thread.Process);
}
}
}
|