I have some Xamarin UI Tests which have the Attributes
[TestFixture(Platform.Android)]
[TestFixture(Platform.iOS)]
Enabling me to run both platform tests in the cloud (AppCenter Test), however, when I get the XML NUnit test results I have problems because I have inconclusive tests.
E.g. Say I have 15 Android tests passing if I publish the XML tests results to Azure DevOps Pipeline it will say only 50% of my tests passed with 15 inconclusive.
What I want to know is what I can do to separate these tests entirely so I end up with an tests result only for Android and for iOS.
Thanks in advance.
