Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
leandromoh committed Nov 13, 2023
1 parent 312f5bf commit aeb4f10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RecordParser.Test/QuotedFileReaderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void Given_quoted_field_in_any_column_should_parse_successfully(bool para
s"
"
a,1
",3, b,4
", 3,b , "4"
a,b,c,d
""".Replace(Environment.NewLine, newline);

Expand All @@ -66,8 +66,8 @@ public void Given_quoted_field_in_any_column_should_parse_successfully(bool para
("98","99","100","101"),
// column quoted = 4
("12","13","14",$"w{newline}s"),
// column quoted = 1 with whitespace before quote
($"{newline}a,1{newline}", "3", " b", "4"),
// column quoted = 1 with leading & trailing whitespace
($"{newline}a,1{newline}"," 3","b ","4"),
// no quoted column
("a","b","c","d"),
};
Expand Down

0 comments on commit aeb4f10

Please sign in to comment.