如何在 Junit 5 的 ParametrizedTest 中使用 CsvFileSource 转义双引号。

huangapple go评论69阅读模式
英文:

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&#39;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:

    &quot;&quot;&quot;a test&quot;&quot;&quot;
result:

    &quot;a test&quot;

</details>



huangapple
  • 本文由 发表于 2020年5月30日 07:41:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/62096078.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定