public void HashSongZip() { string expectedHash = "ea2d289fb640ce8a0d7302ae36bfa3a5710d9ee8".ToUpper(); string zipPath = Path.Combine(TestSongZipsDir, "2cd (Yee - katiedead).zip"); long quickHash = SongHasher.GetQuickZipHash(zipPath); string actualHash = SongHasher.GetZippedSongHash(zipPath); Assert.AreEqual(expectedHash, actualHash); }