/* * Yubeshi GPS Parser * * This software is distributed under a zlib-style license. * See license.txt for more information. */ using System; using System.Collections.Generic; using System.Text; using NUnit.Framework; using Yubeshi; namespace YubeshiTest { class YumaAlmanacReaderTest { [Test] public void Read() { YumaAlmanacReader reader = new YumaAlmanacReader("Resources/almanac.alm"); Almanac[] list = reader.Read(); Assert.AreEqual(31, list.Length); } } }