(lines: string[])
| 42 | describe("ParseMultiLine function", function () { |
| 43 | const rowSplit = new RowSplit(new Converter()); |
| 44 | const func = (lines: string[]): MultipleRowResult => { |
| 45 | return rowSplit.parseMultiLines(lines); |
| 46 | } |
| 47 | it("should convert lines to csv lines", function () { |
| 48 | var lines = [ |
| 49 | "a,b,c,d", |
no test coverage detected