public void ThenFalseIsReturnedIfThePasswordDoesNotTheRequiredStrenth(string password) { //Act var actual = _passwordService.CheckPasswordMatchesRequiredComplexity(password); //Assert Assert.IsFalse(actual); }