示例#1
0
        public void it_does_not_remove_punctuation_from_inside_quoted_strings()
        {
            var def = new StepDefinition(this, this.GetType().GetMethod("given_the_string_arg1"));

            def.TryExecute(new Step {
                Type = StepType.Given, Text = "given the string \"a/b.c!\""
            });

            this.theString.Should().Be("a/b.c!");
        }