File: TestByRef.cs

package info (click to toggle)
mono-debugger 0.60%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,556 kB
  • ctags: 22,787
  • sloc: ansic: 99,407; cs: 42,429; sh: 9,192; makefile: 376
file content (56 lines) | stat: -rw-r--r-- 1,333 bytes parent folder | download
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
49
50
51
52
53
54
55
56
using System;
using NUnit.Framework;

using Mono.Debugger;
using Mono.Debugger.Languages;
using Mono.Debugger.Frontend;

namespace Mono.Debugger.Tests
{
	[TestFixture]
	public class TestByRef : TestSuite
	{
		public TestByRef ()
			: base ("TestByRef")
		{ }

		[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 = 20;
			const int line_test = 7;
			const int line_unsafe = 14;

			AssertStopped (thread, "X.Main()", line_main);

			int bpt_test = AssertBreakpoint ("Test");
			AssertExecute ("continue");
			AssertHitBreakpoint (thread, bpt_test, "X.Test(int&)", line_test);

			AssertExecute ("step");
			AssertStopped (thread, "X.Test(int&)", line_test + 1);

			AssertPrint (thread, "foo", "(int&) &(int) 3");
			int bpt_unsafe = AssertBreakpoint (line_unsafe);

			AssertExecute ("continue");
			AssertTargetOutput ("3");
			AssertNoTargetOutput ();

			AssertHitBreakpoint (thread, bpt_unsafe, "X.UnsafeTest(int)", line_unsafe);

			AssertPrint (thread, "ptr", "(int&) &(int) 3");
			AssertPrint (thread, "*ptr", "(int) 3");

			AssertExecute ("continue");
			AssertTargetOutput ("3");
			AssertTargetExited (thread.Process);
		}
	}
}