Ejemplo n.º 1
0
 public void VerifyHashStringTest()
 {
     HashAlgorithm HashAlgorithm = null; // TODO: Initialize to an appropriate value
     int theSaltLength = 0; // TODO: Initialize to an appropriate value
     Hash target = new Hash(HashAlgorithm, theSaltLength); // TODO: Initialize to an appropriate value
     string Data = string.Empty; // TODO: Initialize to an appropriate value
     string Hash = string.Empty; // TODO: Initialize to an appropriate value
     string Salt = string.Empty; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.VerifyHashString(Data, Hash, Salt);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }