mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-01-01 22:30:00 +01:00
Fix tests
This commit is contained in:
parent
dce526f383
commit
d8d3c3b119
|
|
@ -201,7 +201,7 @@ namespace NmeaParser.Tests
|
|||
Assert.AreEqual(-22.1, gga.GeoidalSeparation);
|
||||
Assert.AreEqual("M", gga.GeoidalSeparationUnits);
|
||||
Assert.AreEqual(-1, gga.DgpsStationId);
|
||||
Assert.AreEqual(TimeSpan.MaxValue, gga.TimeSinceLastDgpsUpdate);
|
||||
Assert.IsNull(gga.TimeSinceLastDgpsUpdate);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
|
|
@ -575,7 +575,7 @@ namespace NmeaParser.Tests
|
|||
Assert.AreEqual(1.4, gns.Hdop);
|
||||
Assert.AreEqual(402.411, gns.OrthometricHeight);
|
||||
Assert.AreEqual(-32.133, gns.GeoidalSeparation);
|
||||
Assert.AreEqual(TimeSpan.MaxValue, gns.TimeSinceLastDgpsUpdate);
|
||||
Assert.IsNull(gns.TimeSinceLastDgpsUpdate);
|
||||
Assert.AreEqual(null, gns.DgpsStationId);
|
||||
Assert.AreEqual(Gns.NavigationalStatus.NotValid, gns.Status);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue