Esempio n. 1
0
 public void EmptyFile()
 {
     byte[] result = Sha1Context.File(Path.Combine(Consts.TEST_FILES_ROOT, "Checksum test files", "empty"));
     result.Should().BeEquivalentTo(_expectedEmpty);
 }
Esempio n. 2
0
 public void Sha1RandomFile()
 {
     byte[] result = Sha1Context.File(Path.Combine(Consts.TestFilesRoot, "checksums", "random"));
     Assert.AreEqual(ExpectedRandom, result);
 }
Esempio n. 3
0
File: SHA1.cs Progetto: paulyc/Aaru
 public void Sha1EmptyFile()
 {
     byte[] result = Sha1Context.File(Path.Combine(Consts.TEST_FILES_ROOT, "Checksum test files", "empty"));
     Assert.AreEqual(_expectedEmpty, result);
 }
Esempio n. 4
0
 public void Sha1EmptyFile()
 {
     byte[] result = Sha1Context.File(Path.Combine(Consts.TestFilesRoot, "checksums", "empty"));
     Assert.AreEqual(ExpectedEmpty, result);
 }
Esempio n. 5
0
File: SHA1.cs Progetto: paulyc/Aaru
 public void Sha1RandomFile()
 {
     byte[] result = Sha1Context.File(Path.Combine(Consts.TEST_FILES_ROOT, "Checksum test files", "random"));
     Assert.AreEqual(_expectedRandom, result);
 }