Unit tests for slewing

This commit is contained in:
2019-07-17 22:58:53 +01:00
parent a53f99810d
commit fdeee5b822
2 changed files with 67 additions and 0 deletions
+6
View File
@@ -1568,6 +1568,12 @@ namespace ASCOM.Meade.net
//Returns:
//LX200's a string of bar characters indicating the distance.
//Autostars and Autostar II a string containing one bar until a slew is complete, then a null string is returned.
if (result == null)
{
return false;
}
bool isSlewing = result != string.Empty;
LogMessage("Slewing Get", $"Result = {isSlewing}");