Public Sub GetNode_GivenSomeNodeId_ReturnCorrectNode(ByV-6ren">
gpt4 book ai didi

vb.net - 如何转义双引号作为 NUnit TestCase 的参数?

转载 作者:行者123 更新时间:2023-12-03 07:48:38 26 4
gpt4 key购买 nike

我尝试为用 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-node 无效,因为这显然不是转义双引号的正确方法。我确信我可以找到一种解决方法来检查被测方法是否返回预期的 XML 节点,但我很好奇:

是否有一些巧妙的方法可以将这样的包含双引号的字符串作为参数传递给 NUnit 测试?

最佳答案

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

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

关于vb.net - 如何转义双引号作为 NUnit TestCase 的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7726420/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com