我怎样才能以最简单的方式使用JUnit测试来测试XML文件?

时间:2017-10-16 19:59:26

标签: xml unit-testing testing junit

我需要知道如何使用JUnit测试来测试XML文件的一部分。把事情放到上下文中是我需要测试的代码:

<creature name="dwarf">
    <type class="dwarf" subclass="dwarf" tileid="dwarf.png:1"/>
    <description>You see a dwarf who works in the mine to find some iron for us.</description>
    <attributes>
      <atk value="168"/>
      <def value="26"/>
      <hp value="140"/>
      <speed value="0.3"/>
      <size value="1,1"/>
    </attributes>

<creature name="elder dwarf">
    <type class="dwarf" subclass="elder_dwarf" tileid="dwarf.png:2"/>
    <description>You see an elder dwarf, a mighty warrior tired of fighting.</description>
    <attributes>
      <atk value="214"/>
      <def value="33"/>
      <hp value="180"/>
      <speed value="1.0"/>
      <size value="1,1"/>
    </attributes>

我需要测试矮人速度是否大于老矮人速度。虽然,我以前从未测试过XML文件,只测试过Java文件,所以我没有线索!

0 个答案:

没有答案