Akka.Tests.Configuration.HoconTests.Can_assign_unescaped_path_like_variable_to_field C# (CSharp) Method

Can_assign_unescaped_path_like_variable_to_field() private method

private Can_assign_unescaped_path_like_variable_to_field ( ) : void
return void
        public void Can_assign_unescaped_path_like_variable_to_field()
        {
            var hocon = @"a=""""""C:\Dev\somepath\to\a\file.txt""""""";
            Assert.Equal("C:\\Dev\\somepath\\to\\a\\file.txt", ConfigurationFactory.ParseString(hocon).GetString("a"));
        }