1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
<?xml version="1.0" encoding="UTF-8"?>
<Tests>
<Test type="Add element">
<One>1</One>
<One>2</One>
<One>2.1</One>
<One>3</One>
</Test>
<Test type="Delete element">
<Two>1</Two>
<Two>3</Two>
</Test>
<Test type="Move element">
<Three>2</Three>
<Three>1</Three>
<Three>3</Three>
</Test>
<Test type="Change text">
<Four>This WAS the fourth sentence.</Four>
</Test>
<Test type="Insert mixed element">
<Five>This is the <new/> fifth sentence.</Five>
</Test>
<Test type="Insert mixed element with text">
<Six>This is the <new>and improved</new> sixth sentence.</Six>
</Test>
<Test type="Delete mixed element">
<Seven>This is the seventh sentence.</Seven>
</Test>
<Test type="Delete mixed element with text">
<Eight>This is the Eighth sentence.</Eight>
</Test>
<Test type="Change mixed element with text">
<Nine>This is <b>(changed)</b> the Ninth sentence.</Nine>
</Test>
<Test type="No Change">
<Ten>This is <b>now</b> the Tenth sentence.</Ten>
</Test>
</Tests>
|