public void CheckLength_PasswordIsEntered_ShouldReturnTrueIfLengthIs8(bool expected, string password) { // Arrange // Act bool actual = PasswordChecker.CheckLength(password); // Assert Assert.Equal(expected, actual); }