-
Notifications
You must be signed in to change notification settings - Fork 410
Closed
microsoft/java-debug
#276Milestone
Description
[Both in local variables and watch window, the debugger view shows the type of the complex object. It'll be really useful to show both type and toString() of the object]
Steps To Reproduce
- put the following code in a test class
public void testComplexTypeVariables() {
String hello = "How are you.";
Date now = new Date();
assertNotEquals("not expected to be the same.", hello, now);
}
- set break point on the assert line and start the debugger
- look at the variables window
Current Result
Showing Type only for complex object
Expected Result
to show both Type and toString() of the object. In the example, I expect to see ((now "2018-06-21 20:00:00.0" Date)) for the now variable.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
