Ejemplo n.º 1
0
        public void StringFormattingIsApplied(string s, string format, string expected)
        {
            var f  = new ThemedDisplayValueFormatter(ConsoleTheme.None, null);
            var sw = new StringWriter();

            f.FormatLiteralValue(new ScalarValue(s), sw, format);
            var actual = sw.ToString();

            Assert.Equal(expected, actual);
        }
Ejemplo n.º 2
0
        public void StringFormattingIsApplied(string value, string format, string expected)
        {
            var formatter = new ThemedDisplayValueFormatter(RichTextBoxTheme.None, null);
            var sw        = new StringWriter();

            formatter.FormatLiteralValue(new ScalarValue(value), sw, format);

            var actual = sw.ToString();

            Assert.Equal(expected, actual);
        }