将XML转换为表时是否有正确的结果

问题描述 投票:0回答:1

[当我问2 + 2是什么时,正确答案是4,无论该结果的预期用途是什么。假设我有这个XML:

<?xml version="1.0" encoding="utf-8" ?> 
<suite>
  <testcase id="001" kind="bvt">
    <inputs>
      <arg1>4</arg1>
      <arg2>7</arg2>
    </inputs>
    <expected>11.00</expected>
  </testcase>
  <testcase id="002" kind="drt">
    <inputs>
      <arg1>9</arg1>
      <arg2>6</arg2>
    </inputs>
    <expected>15.00</expected>
  </testcase>
</suite>

我有一个工具/程序将其呈现为:

id kind arg1 arg2 expected
1  bvt  4    7    11
2  drt  9    6    15

我还有另一个工具/程序将其呈现为:

testcase_id kind field value
001         bvt  arg1  4
001         bvt  arg2  7
001         bvt  expected 11.00
002         drt  arg1  9
002         drt  arg2  6
002         drt  expected 15.00

再次,本着2 + 2 = 4的精神,有没有正确的答案?以上任一“正确”的吗?如果没有,那是正确的吗?

xml xml-parsing
1个回答
0
投票

Correct

© www.soinside.com 2019 - 2024. All rights reserved.