Ejemplo n.º 1
0
        public void CalculateHash_ShouldBeExpectedHash(string password, string expected)
        {
            //Arrange

            //Act
            var result = CryptographyHelper.CalculateHash(password);

            //Assert
            result.Should().Be(expected);
        }