예제 #1
0
파일: tIMETests.cs 프로젝트: AvaPL/E-media
        public void ShouldReadtIME()
        {
            string filePath = @"../../../Data/przekladnia.png";
            tIME   time     = new tIME(PNGFile.Read(filePath)[2]);

            Assert.AreEqual("tIME", time.Type);
        }
예제 #2
0
파일: tIMETests.cs 프로젝트: AvaPL/E-media
        public void ShouldContainCorrectDate()
        {
            string filePath = @"../../../Data/przekladnia.png";
            tIME   time     = new tIME(PNGFile.Read(filePath)[2]);

            Assert.AreEqual(2009, time.LatestModificationDate.Year);
            Assert.AreEqual(7, time.LatestModificationDate.Month);
            Assert.AreEqual(24, time.LatestModificationDate.Day);
        }