Added comments for unit testing

This commit is contained in:
2022-11-10 18:05:39 +00:00
parent 3ffa9fbe8b
commit 7afa7458c7
+2 -2
View File
@@ -3431,7 +3431,7 @@ namespace ASCOM.Meade.net
} }
catch (InvalidOperationException) catch (InvalidOperationException)
{ {
dms = SetTargetDeclination(value, !SharedResourcesWrapper.IsLongFormat); dms = SetTargetDeclination(value, !SharedResourcesWrapper.IsLongFormat); //todo add unit test for this scenario
} }
SharedResourcesWrapper.TargetDeclination = _utilities.DMSToDegrees(dms); SharedResourcesWrapper.TargetDeclination = _utilities.DMSToDegrees(dms);
@@ -3518,7 +3518,7 @@ namespace ASCOM.Meade.net
} }
catch (InvalidOperationException) catch (InvalidOperationException)
{ {
hms = SetTargetRightAscension(value, !SharedResourcesWrapper.IsLongFormat); hms = SetTargetRightAscension(value, !SharedResourcesWrapper.IsLongFormat); //todo add unit test for this scenario
} }
SharedResourcesWrapper.TargetRightAscension = _utilities.HMSToHours(hms); SharedResourcesWrapper.TargetRightAscension = _utilities.HMSToHours(hms);