public void WhenGivenStringArrayProperty_FormatsProperly()
            {
                var actual = ArgumentsBuilderExtension.GetArgumentFromStringArrayListProperty(
                    ListStringsProperty, new string[] { "tubo1", "tubo2" }, isSecret: false).Value;

                Assert.That(actual.Key, Is.EqualTo("--list-strings"));
                Assert.That(actual.Value, Is.EqualTo("tubo1,tubo2"));
                Assert.That(actual.Quoting, Is.EqualTo(DockerArgumentQuoting.Quoted));
            }