|
create a parser from the default constructor |
0.003 s |
|
able to parse a simple line |
0.001 s |
|
able to parse a multiple line record |
0.002 s |
|
parsing This,is,a,test yields values This is a and test |
0 s |
|
parsing 7,seven,7.89,12/11/16 yields values 7 seven 7.89 and 12/11/16 |
0 s |
|
parsing 1,"\""","this is a quote "" character",test yields values 1 \" this is a quote " character and test |
0.001 s |
|
parsing 2,\ ,"this is a comma , character",two yields values 2 \ this is a comma , character and two |
0.001 s |
|
parsing 3,\\ ,this is a backslash \ character,three yields values 3 \\ this is a backslash \ character and three |
0.001 s |
|
parsing 5,"21,34",test comma,five yields values 5 21,34 test comma and five |
0 s |
|
parsing 8,\',"a big line with
multiple carriage returns
in it.",eight yields values 8 \' a big line with
multiple carriage returns
in it. and eight |
0 s |
|
parsing #testLine yields values #expected1 #expected2 #expected3 and #expected4 |
0.007 s |
|
parsing This,is,a,test with custom quote yields values This is a and test |
0.001 s |
|
parsing 7,seven,7.89,12/11/16 with custom quote yields values 7 seven 7.89 and 12/11/16 |
0 s |
|
parsing 1,'\''','this is a quote '' character',test with custom quote yields values 1 \' this is a quote ' character and test |
0 s |
|
parsing 2,\ ,'this is a comma , character',two with custom quote yields values 2 \ this is a comma , character and two |
0 s |
|
parsing 3,\\ ,this is a backslash \ character,three with custom quote yields values 3 \\ this is a backslash \ character and three |
0.001 s |
|
parsing 5,'21,34',test comma,five with custom quote yields values 5 21,34 test comma and five |
0 s |
|
parsing 8,\",'a big line with
multiple carriage returns
in it.',eight with custom quote yields values 8 \" a big line with
multiple carriage returns
in it. and eight |
0 s |
|
parsing #testLine with custom quote yields values #expected1 #expected2 #expected3 and #expected4 |
0.007 s |
|
parsing This.is.a.test with custom separator yields values This is a and test |
0.001 s |
|
parsing 7.seven.7,89.12/11/16 with custom separator yields values 7 seven 7,89 and 12/11/16 |
0.001 s |
|
parsing 1."\"""."this is a quote "" character".test with custom separator yields values 1 \" this is a quote " character and test |
0 s |
|
parsing 2.\ ."this is a comma . character".two with custom separator yields values 2 \ this is a comma . character and two |
0 s |
|
parsing 3.\\ .this is a backslash \ character.three with custom separator yields values 3 \\ this is a backslash \ character and three |
0.001 s |
|
parsing 5."21.34".test comma.five with custom separator yields values 5 21.34 test comma and five |
0 s |
|
parsing 8.\'."a big line with
multiple carriage returns
in it.".eight with custom separator yields values 8 \' a big line with
multiple carriage returns
in it. and eight |
0 s |
|
parsing #testLine with custom separator yields values #expected1 #expected2 #expected3 and #expected4 |
0.007 s |
|
parser with nullfieldindicator |
0.002 s |
|
parse a complex string |
0.001 s |
|
Parser with NullFieldindicator of NEITHER should return and |
0 s |
|
Parser with NullFieldindicator of EMPTY_SEPARATORS should return null null and null |
0.001 s |
|
Parser with NullFieldindicator of EMPTY_QUOTES should return null and |
0.001 s |
|
Parser with NullFieldindicator of BOTH should return null null null and null |
0.001 s |
|
Parser with NullFieldindicator of #nullField should return #string1 #string2 #string3 #string4 and #string5 |
0.018 s |
|
parseToLine with NullFieldindicator of NEITHER with data null null and should return null, ,,null, |
0.001 s |
|
parseToLine with NullFieldindicator of EMPTY_SEPARATORS with data null null and should return , ,"",,"" |
0.001 s |
|
parseToLine with NullFieldindicator of EMPTY_QUOTES with data null null and should return "", ,,"", |
0 s |
|
parseToLine with NullFieldindicator of BOTH with data null null and should return , ,,, |
0.001 s |
|
parseToLine with NullFieldindicator of #nullField with data #string1 #string2 #string3 #string4 and #string5 should return #expectedResult |
0.007 s |
|
Parser with NullFieldindicator of EMPTY_SEPARATORS should behave consistently if possible |
0.001 s |
|
Parser with NullFieldindicator of EMPTY_QUOTES should behave consistently if possible |
0 s |
|
Parser with NullFieldindicator of #nullField should behave consistently if possible |
0.001 s |
|
able to parse a field that has a single quote at the end |
0 s |
|
if given a null then return a null |
0 s |
|
parse excel generated string |
0.001 s |
|
parsing This,is,a,test from String to array back to String returns the same result |
0.001 s |
|
parsing 7,seven,7.89,12/11/16 from String to array back to String returns the same result |
0.001 s |
|
parsing 1,"\""","this is a quote "" character",test from String to array back to String returns the same result |
0 s |
|
parsing 2,\ ,"this is a comma , character",two from String to array back to String returns the same result |
0 s |
|
parsing 3,\\ ,this is a backslash \ character,three from String to array back to String returns the same result |
0 s |
|
parsing 5,"21,34",test comma,five from String to array back to String returns the same result |
0 s |
|
parsing 8,\',"a big line with
multiple carriage returns
in it.",eight from String to array back to String returns the same result |
0 s |
|
parsing a,"b,b,b",c from String to array back to String returns the same result |
0 s |
|
parsing #testLine from String to array back to String returns the same result |
0.005 s |
|
parsing This is a and test from array to String back to array yields the same result |
0 s |
|
parsing 7 seven 7.89 and 12/11/16 from array to String back to array yields the same result |
0 s |
|
parsing 1 \" this is a quote " character and test from array to String back to array yields the same result |
0 s |
|
parsing 2 \ this is a comma , character and two from array to String back to array yields the same result |
0 s |
|
parsing 3 \\ this is a backslash \ character and three from array to String back to array yields the same result |
0 s |
|
parsing 5 21,34 test comma and five from array to String back to array yields the same result |
0 s |
|
parsing 8 \' a big line with
multiple carriage returns
in it. and eight from array to String back to array yields the same result |
0 s |
|
parsing #expected1 #expected2 #expected3 and #expected4 from array to String back to array yields the same result |
0.004 s |
|
sof request - parsing "ABC\" yields ABC\ |
0 s |
|
sof request - parsing "ABC\"" yields ABC\" |
0 s |
|
sof request - parsing #value yields #expected |
0.001 s |
|
bug 157 - quotes should not be in data that is unquoted |
0 s |
|
bug 165 - No character line showing up as an extra record with RFC4180Parser |
0.001 s |
|
parseToLine with applyQuotesToAll of false of This, is, a, test. should yield This, is, a, test. |
0 s |
|
parseToLine with applyQuotesToAll of false of This line, has "a" quote , in, it should yield This line," has ""a"" quote ",in,it |
0 s |
|
parseToLine with applyQuotesToAll of false of #string1, #string2, #string3, #string4 should yield #expectedResult |
0.002 s |
|
parseToLine with applyQuotesToAll of true of This, is, a, test. should yield "This"," is"," a"," test." |
0 s |
|
parseToLine with applyQuotesToAll of true of This line, has "a" quote , in, it should yield "This line"," has ""a"" quote ","in","it" |
0 s |
|
parseToLine with applyQuotesToAll of true of #string1, #string2, #string3, #string4 should yield #expectedResult |
0.001 s |
|
bug 193 - Multiline not working if the last character is a quote character |
0.001 s |
|
Should we throw an error if there are quotes inside an unquoted data field |
0.001 s |