Skip to content

Sikay/password-validator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goal

Design and implement a software that validates a password applying TDD.

The password will be introduced by the user (as an argument of the method) and should return if the password is valid or not.

A valid password should meet the following requirements:

 - Have more than 8 characters
 - Contains a capital letter
 - Contains a lowercase
 - Contains a number
 - Contains an underscore

Technical requirements:

- We want a method that answers if the password is valid or not.
- We don't want to know the reason when the password is invalid (the return value is a boolean)

About

Kata to practice TDD and recognize some test smells

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 74.0%
  • Makefile 15.9%
  • Dockerfile 3.2%
  • PHP 3.0%
  • JavaScript 2.3%
  • Python 1.6%