@@ -17,7 +17,7 @@ public class CustomViewTests : DebuggerTestBase
1717 [ Fact ]
1818 public async Task UsingDebuggerDisplay ( )
1919 {
20- var bp = await SetBreakpointInMethod ( "debugger-test.dll" , "DebuggerTests.DebuggerCustomViewTest" , "run" , 12 ) ;
20+ var bp = await SetBreakpointInMethod ( "debugger-test.dll" , "DebuggerTests.DebuggerCustomViewTest" , "run" , 15 ) ;
2121 var pause_location = await EvaluateAndCheck (
2222 "window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.DebuggerCustomViewTest:run'); }, 1);" ,
2323 "dotnet://debugger-test.dll/debugger-custom-view-test.cs" ,
@@ -29,12 +29,14 @@ public async Task UsingDebuggerDisplay()
2929 CheckObject ( locals , "a" , "DebuggerTests.WithDisplayString" , description : "Some one Value 2 End" ) ;
3030 CheckObject ( locals , "c" , "DebuggerTests.DebuggerDisplayMethodTest" , description : "First Int:32 Second Int:43" ) ;
3131 CheckObject ( locals , "myList" , "System.Collections.Generic.List<int>" , description : "Count = 4" ) ;
32+ CheckObject ( locals , "person1" , "DebuggerTests.Person" , description : "FirstName: Anton, SurName: Mueller, Age: 44" ) ;
33+ CheckObject ( locals , "person2" , "DebuggerTests.Person" , description : "FirstName: Lisa, SurName: Müller, Age: 41" ) ;
3234 }
3335
3436 [ Fact ]
3537 public async Task UsingDebuggerTypeProxy ( )
3638 {
37- var bp = await SetBreakpointInMethod ( "debugger-test.dll" , "DebuggerTests.DebuggerCustomViewTest" , "run" , 12 ) ;
39+ var bp = await SetBreakpointInMethod ( "debugger-test.dll" , "DebuggerTests.DebuggerCustomViewTest" , "run" , 15 ) ;
3840 var pause_location = await EvaluateAndCheck (
3941 "window.setTimeout(function() { invoke_static_method ('[debugger-test] DebuggerTests.DebuggerCustomViewTest:run'); }, 1);" ,
4042 "dotnet://debugger-test.dll/debugger-custom-view-test.cs" ,
0 commit comments