Esempio n. 1
0
        public void ShouldFindCorrectImageType()
        {
            var uImage = UImageReader.Load(Utilities.GetBinaryLocation("uImage-panda"));

            Assert.AreEqual(ImageType.Kernel, uImage.Type);
        }
Esempio n. 2
0
        public void ShouldProperlyReadTimestamp()
        {
            var uImage = UImageReader.Load(Utilities.GetBinaryLocation("uImage-panda"));

            Assert.AreEqual(new DateTime(2012, 4, 10, 21, 11, 06), uImage.Timestamp);
        }