Fix Csv export
All threads resolved!
All threads resolved!
Fix #394 (closed) Adds quotation marks around entry values if they contain commas.
Edited by Lorenz Boguhn
Merge request reports
Activity
Filter activity
added Theodolite Kotlin modul/theodolite labels
requested review from @she
assigned to @stu203404
- Resolved by Lorenz Boguhn
I also added quotation marks around the columns as proposed in #394 (closed)
Method addQuotationMarks is private for now.
Could also be tested if it would be public with:
/** * */ @Test fun testAddQuotationMarks(){ val test = listOf("shopping list", "apples, pineapples") val expected = listOf("shopping list", "\"apples, pineapples\"") assertEquals(expected,IOHandler().addQuotationMarks(test)) } `
added 1 commit
- 2f22148e - Csv exporter add quotations mark to quotation mark
added 14 commits
-
2f22148e...b06c3841 - 11 commits from branch
she:master
- cb0724c7 - Fix IOHandler.kt + IOHandlerTest.kt
- 31318314 - Csv export: Add commas to the column names
- 27126b25 - Csv exporter add quotations mark to quotation mark
Toggle commit list-
2f22148e...b06c3841 - 11 commits from branch
mentioned in commit 88f666c3
Please register or sign in to reply