[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.
[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
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.