Esempio n. 1
0
        public void CheckLength_PasswordIsEntered_ShouldReturnTrueIfLengthIs8(bool expected, string password)
        {
            // Arrange
            // Act
            bool actual = PasswordChecker.CheckLength(password);

            // Assert
            Assert.Equal(expected, actual);
        }