I'm on MonoTouch 6.0.4 and have implemented a Unit test using MonoTouch's NUnitLite.
If I execute a test and end it with an Assert()
I can see from the logs that the test executed successfully:
Tests run: 1 Passed: 0 Inconclusive: 0 Failed: 1 Ignored: 0
But in the UI, the test result is not reflected:
The test method:
[Test]
public void TestPing()
{
APIPingResult oRes = oManager.PingConnector.Ping(5);
Assert.True(oRes.Success);
}
Just a bug or am I missing something?