/*
* PRECONDITION
* Activate WiFi then get WiFi connected
- * Create a WiFiNetwork object
- * Create a WiFiProfile object
*/
await setUp();
- /*
- * TEST CODE
- * Compare MaxSpeed property between two object WiFiNetwork and WiFiProfile
- */
int _maxSpeed = _wiFiProfile.MaxSpeed;
Log.Info(Globals.LogTag, "_wiFiProfile.MaxSpeed: " + _maxSpeed);
- Log.Info(Globals.LogTag, "_wiFiNetwork.MaxSpeed: " + _wiFiNetwork.MaxSpeed);
- Assert.AreEqual(_maxSpeed, _wiFiNetwork.MaxSpeed, "MaxSpeed doesn't get successful");
+ Assert.Greater(_maxSpeed, 0, "MaxSpeed doesn't get successful");
}
catch (NotSupportedException)
{