Example #1
0
        public void DebuggerDisplay_Inherited()
        {
            var obj = new InheritedDebuggerDisplay();

            var str = CSharpObjectFormatter.Instance.FormatObject(obj, s_inline);

            Assert.Equal("InheritedDebuggerDisplay(DebuggerDisplayValue)", str);
        }
Example #2
0
        public void DebuggerDisplay_Inherited()
        {
            var obj = new InheritedDebuggerDisplay();

            var str = s_formatter.FormatObject(obj, SingleLineOptions);

            Assert.Equal("InheritedDebuggerDisplay(DebuggerDisplayValue)", str);
        }
Example #3
0
        public void DebuggerDisplay_Inherited()
        {
            var obj = new InheritedDebuggerDisplay();

            var str = CSharpObjectFormatter.Instance.FormatObject(obj, s_inline);
            Assert.Equal("InheritedDebuggerDisplay(DebuggerDisplayValue)", str);
        }