Hi,
i am doing some assertions for a resultset that is a list that looks like this:
<a:ResultSet xmlns:a="
http://schemas.datacontract.org/2004/07/SecondTravel.Global.DataContract.Licence.v1_0" xmlns:i="
http://www.w3.org/2001/XMLSchema-instance" xmlns="
http://SecondTravel.Global.ServiceContract.Licence.v1_0.ILicence" xmlns:s="
http://schemas.xmlsoap.org/soap/envelope/">
<a:LicenceDCResultItem>
<a:FunctionalityCode>Users</a:FunctionalityCode>
</a:LicenceDCResultItem>
<a:LicenceDCResultItem>
<a:FunctionalityCode>Global_Codes</a:FunctionalityCode>
</a:LicenceDCResultItem>
<a:LicenceDCResultItem>
<a:FunctionalityCode>Global_Subscribe</a:FunctionalityCode>
</a:LicenceDCResultItem>
</a:ResultSet>
now depending on the GUID in the database the order of the <a:FunctionalityCode> items change.
is there a assertion except "Contains" that validates for the items and doesnt care about the order?
i tried match content and Xpath match bot both are failing when the order changes.
thanks
Christoph