如何转义双引号作为 NUnit TestCase 的参数?

发布于 2024-12-09 05:57:54 字数 570 浏览 1 评论 0原文

我尝试为用 VB.net 编写的 NUnit 测试编写以下 TestCase:

<TestCase("FirstNode", "<node id=\"FirstNode\">")>
Public Sub GetNode_GivenSomeNodeId_ReturnCorrectNode(ByVal nodeId as String, 
                                            ByVal expectedXml as String)

    (Call the method under test and request the xmlNode with the provided id...)

    Assert.AreEqual(expectedXml, returnedXml)
End Sub

但是,作为第二个参数传递给测试用例的 xml 节点无效,因为这显然不是转义双引号的正确方法。我确信我可以找到一种解决方法来检查被测试的方法是否返回预期的 XML 节点,但我很好奇:

是否有一些聪明的方法来传递这样的包含双引号的字符串作为NUnit 测试的参数?

I tried writing the following TestCase for an NUnit test written in VB.net:

<TestCase("FirstNode", "<node id=\"FirstNode\">")>
Public Sub GetNode_GivenSomeNodeId_ReturnCorrectNode(ByVal nodeId as String, 
                                            ByVal expectedXml as String)

    (Call the method under test and request the xmlNode with the provided id...)

    Assert.AreEqual(expectedXml, returnedXml)
End Sub

The xml-node passed as the second parameter to the testcase is not valid however, as this clearly is not the correct way to escape double quotes. I'm sure I can find a workaround in order to check that the method under test returns the expected XML-node, but I'm curious:

Is there some clever way to pass a string such as this, containing double quotes, as a parameter to an NUnit test?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水水月牙 2024-12-16 05:57:54

在 VB 中转义双引号的正确方法是将双引号加倍:

<TestCase("FirstNode", "<node id=""FirstNode"">")>

The correct way to escape double-quotes in VB is by doubling the double-quotes:

<TestCase("FirstNode", "<node id=""FirstNode"">")>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文