public void SetSimpleValueSuccessfully()
        {
            var original = new FormattedLogValues("The first number is {first} and the second is {second}", 10.ToString(), 20.ToString());
            var updated  = original.SetSimpleValue("Changed");

            Assert.Equal("Changed", updated.ToString());
        }