public void CorrectlyHandlesQuoteTrimming(string input, string expectedTrimQuotesValue, string expectedDontTrimQuotesValue)
        {
            var commandLineParser = CreateCommandLineParser();

            var context           = new Tests.Context.TestContext();
            var validationContext = commandLineParser.Parse(input, context);

            Assert.AreEqual(expectedTrimQuotesValue, context.TrimQuotes);
            Assert.AreEqual(expectedDontTrimQuotesValue, context.DontTrimQuotes);
        }
        public void CorrectlyHandlesQuoteTrimming(string input, string expectedTrimQuotesValue, string expectedDontTrimQuotesValue)
        {
            var commandLineParser = CreateCommandLineParser();

            var context = new Tests.Context.TestContext();
            var validationContext = commandLineParser.Parse(input, context);

            Assert.AreEqual(expectedTrimQuotesValue, context.TrimQuotes);
            Assert.AreEqual(expectedDontTrimQuotesValue, context.DontTrimQuotes);
        }