public void section_with_a_single_step_that_only_has_values()
        {
            var section = new Section("Math");
            section.AddStep("Add").With("x", "1").With("y", "2").With("sum", "3");

            Debug.WriteLine(section.ToJson());
        }
        public void section_with_a_single_comment()
        {
            var section = new Section("Math");
            section.AddComment("some foo");

            Debug.WriteLine(section.ToJson());
        }