Пример #1
0
 public void GenerateSaltStringTest()
 {
     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 expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.GenerateSaltString();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }