好的 - 对不起,我原来的问题缺乏特异性。这是我正在尝试做的 - 使用特定浏览器测试用例的测试用例结果更新 Rally。更新代码片段:
DynamicJsonObject newTestCaseResult = new DynamicJsonObject();
newTestCaseResult["Date"] = "2012-04-25";
newTestCaseResult["TestCase"] = "TC1234";
newTestCaseResult["Notes"] = "XSLT support tests";
newTestCaseResult["Build"] = "20120430.3681";
newTestCaseResult["Verdict"] = "Pass";
// Create the TestCaseResult
CreateResult cr = restApi.Create("TestCaseResult", newTestCaseResult);
我在创建步骤中遇到了这个异常:
{System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.}
关于我要去哪里错的任何想法?这个问题是否满足提高特异性的需要?