Akka.Tests.Configuration.HoconTests.Can_assign_triple_quoted_string_with_unescaped_chars_to_field C# (CSharp) Метод

Can_assign_triple_quoted_string_with_unescaped_chars_to_field() приватный Метод

private Can_assign_triple_quoted_string_with_unescaped_chars_to_field ( ) : void
Результат void
        public void Can_assign_triple_quoted_string_with_unescaped_chars_to_field()
        {
            var hocon = @"a=""""""hello\y\o\u""""""";
            Assert.Equal("hello\\y\\o\\u", ConfigurationFactory.ParseString(hocon).GetString("a"));
        }