I am using appium for android hybrid app automation. I have created AppiumTest project inside my application project in android studio. I have created 4 test cases. I am using xml file to create test suite but on execution xml is ignored and all test case are executed.
<suite name="Group" verbose="1"
thread-count="10">
<test name="skybet" thread-count="10">
<classes>
<class name="appiumtest.AndroidAppiumTest" />
<class name="appiumtest.ExternalLinksCheck" />
<class name="appiumtest.NetworkCheck" />
<class name="appiumtest.SSOCheck" />
</classes>
</test>
</suite>
How can I create test suite for these test cases?