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

Can_overwrite_value() private method

private Can_overwrite_value ( ) : void
return void
        public void Can_overwrite_value()
        {
            var hocon = @"
test {
  value  = 123
}
test.value = 456
";
            var config = ConfigurationFactory.ParseString(hocon);
            config.GetInt("test.value").ShouldBe(456);
        }