我正在尝试将测试用例添加到Rally中的测试集中。
我有测试集对象和测试用例对象。 我可以用这个测试用例对象替换整个测试集列表,它工作正常。 但我真的需要将此测试用例添加到列表中。
知道我这样做的方式有何不同?
testset_object.update(:test_cases => test_case_object)
答案 0 :(得分:0)
:test_cases字段应该只是一个数组,所以这应该工作:
tests = [test_case_object1,test_case_object2]
testset_object.update(:test_cases => tests)
希望有所帮助