英文:
How to escape double qootes in Junit 5 a ParametrizedTest with CsvFileSource
问题
@ParametrizedTest 在 Junit 5 中与 @CsvFileSource 一起使用时,我需要一个包含双引号的参数。如何转义这些双引号,即如何将 "a test"
作为我的参数传递?
我尝试过的方法:
"a test"
""a test""
\"a test\"
"\"a test\""
参数被转换为:
a test
""a test""
\"a test\"
"\"a test\""
英文:
When using @ParametrizedTest in Junit 5 with @CsvFileSource, i need a parameter containing double quotes. How do I escape these, i.e. how do i pass exatly "a test"
as my parameter?
What I have tried:
"a test"
""a test""
\"a test\"
"\"a test\""
What the parameter is converted to:
a test
""a test""
\"a test\"
"\"a test\""
答案1
得分: 0
由于 @markspace 的评论,我注意到问题不在于 Junit 5,而是CSV标准。因此,我尝试在 LibreOffice 中进行编辑,而不是使用文本编辑器,这给了我答案:
"""a test"""
结果:
```"a test"```
<details>
<summary>英文:</summary>
Thanks to @markspace's comment, I noticed the problem is not Junit 5, but the CSV standard. So I tried editing it in LibreOffice instead of a text editor, which gave me the answer:
"""a test"""
result:
"a test"
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论