Here is a WADL file that fails to create a TestSuite:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<application xmlns="
http://wadl.dev.java.net/2009/02"> <resources base="api">
<resource path="businesses">
<method name="POST">
<request>
<param xmlns:xs="
http://www.w3.org/2001/XMLSchema" name="BusinessId" style="query" type="xs:long"/>
<representation mediaType="application/xml"/>
<representation mediaType="application/json"/>
</request>
<response status="200">
<representation mediaType="application/xml"/>
<representation mediaType="application/json"/>
</response>
</method>
<method name="GET">
<request>
<param xmlns:xs="
http://www.w3.org/2001/XMLSchema" name="Federation" style="query" type="xs:boolean" default="false"/>
</request>
<response status="200">
<representation mediaType="text/xml"/>
<representation mediaType="application/json"/>
</response>
</method>
<resource path="/{businessID}/export">
<param name="businessID" style="template"/>
<method name="GET">
<response status="200">
<representation mediaType="text/plain"/>
</response>
</method>
</resource>
<resource path="{businessID}">
<param name="businessID" style="template"/>
<method name="GET">
<response status="200">
<representation mediaType="application/json"/>
<representation mediaType="text/xml"/>
</response>
</method>
</resource>
<resource path="{businessID}/apis">
<param name="businessID" style="template"/>
<method name="POST">
<request>
<representation mediaType="application/json"/>
<representation mediaType="application/xml"/>
</request>
<response status="200">
<representation mediaType="application/json"/>
<representation mediaType="application/xml"/>
</response>
</method>
</resource>
</resource>
</resources>
</application>