public void AssembleSyntaxFromDiff_GivesCorrectSyntaxMultiple()
        {
            // Arrange
            var diff = new Dictionary <string, string> {
                { "Title", "ReTestTitle" }, { "Description", "ReTestDescription" }
            };
            var expected = " updated the Title to ReTestTitle, updated the Description to ReTestDescription";

            // Act
            var updateService = new UpdateService(null, null, null);
            var actual        = updateService.AssembleSyntaxFromDiff(diff);

            // Assert
            Assert.Equal(expected, actual);
        }